본문 바로가기

Web/PHP

스케줄 달력 (Calendar.php)

<?php
/***************************************************************************
*
*        Date            : 2004-10-30
*        Copyright        : aucd29
*        E-mail            : aucd29@daum.net
*        Type            :
*
*
*
***************************************************************************/

// Init
$sOverColor = '#ffffff';
$nYear = (!$_GET[nYear]) ? date(Y) : $_GET[nYear];
$nMonth = (!$_GET[nMonth]) ? date(m) : $_GET[nMonth];
$nDay = (!$_GET[nDay]) ? date(d) : $_GET[nDay];

// Class
require './class.Calendar2.php';

$nBackYear = $objCalendar->change('1', $sAppendix);
$nBackMonth = $objCalendar->change('2', $sAppendix);
$nNextMonth = $objCalendar->change('3', $sAppendix);
$nNextYear = $objCalendar->change('4', $sAppendix);

$sAppendix = null;
require $_SELF[RES]."/calendar/schedule.html";
?>


'Web > PHP' 카테고리의 다른 글

alphaEncoder 기본적인 문자 암호화(엔코더)  (0) 2013.09.26
preg  (0) 2013.09.26
스케줄 달력 (list.php)  (0) 2013.09.26
스케줄 달력 (schedule.css)  (0) 2013.09.26
스케줄 달력 (schedule.html)  (0) 2013.09.26