I have a calendar page which actually loads fine.
The calendar code starts like this.
Code: Select all
<?php
require_once("include/inc_calendar.class.php");
$oCalendar = new inc_calendar();
$month = $_REQUEST['month'];
$year = $_REQUEST['year'];
$oCalendar->dateNow($month,$year);
?>I believe that the notice is indicating that the index value month is not set.
Code: Select all
[Sat May 03 14:29:50 2008] [error] [client 127.0.0.1] PHP Notice: Undefined index: year in C:\\Program Files\\Apache Group\\Apache2\\htdocs\\mysite\\view_calendar.php on line 5, referer: http://localhost:8080/mysite/menu.php
[Sat May 03 14:29:50 2008] [error] [client 127.0.0.1] PHP Notice: Undefined index: month in C:\\Program Files\\Apache Group\\Apache2\\htdocs\\mysite\\view_calendar.php on line 5, referer: http://localhost:8080/mysite/menu.php