 |
 |
 |
|
require("inc/menu.php3"); ?>
|
|
 |
 |
 |
|
include("bb_calendar_navigation.php3"); ?> |
|
$currentyear = date(Y);
$currentmonth = date(m);
$currentmonthlong = date(F);
$nextmonth = date(m)+1;
$nextyear = date(Y)+1;
$nextmonthlong = (date("F", mktime($currentmonth+720)));
$query_events = "SELECT * FROM calendar WHERE event_year = '$currentyear' AND event_month = '$currentmonth' ORDER BY event_year, event_month, event_day";
$mysql_result_events = mysql_query($query_events);
print("\n");
//print("Events for $currentmonthlong ");
while($row = mysql_fetch_row($mysql_result_events))
{
$caturl=(urlencode($row[4]));
print("$row[7]
$currentmonthlong $row[3], $row[1] $row[4] ");
}
//if($nextmonthnumber > 12)
//{
//print("$nextmonthlong's Events");
//}
//else
//{
//print("$nextmonthlong's Events");
//}
print(" \n");
?>
|
|
|
|
 |
 |
|
 |
 |
 |