Warning: array_keys() [function.array-keys]: The first argument should be an array in /sciezka/calendar.php on line 10
Warning: Invalid argument supplied for foreach() in /sciezka/calendar.php on line 10
calendar.php :
<?php include("libs/Smarty.class.php"); $smarty = new smarty(); $total_day_of_month = get_total_day($date); $days[] = $day; for ($i=0; $i < $starting_day; $i++) $days[] = " "; for ($i=1; $i< ($total_day_of_month+1); $i++) $smarty->assign("title",$title); $smarty->assign("special_days", $days); $smarty->display("calendar.tpl"); function get_total_day($date) { $month = $month_ar[0]; for ($i=28; $i<33; $i++) { return ($i - 1); } } } ?>
calendar.tpl
co jest nie tak?