UTW Events
if(isset($_GET['prm'])){
$m=$_GET['prm']+$_GET['chm'];}else{
$m= date("n");
}
$d= date("d"); // Finds today's date
$y= date("Y"); // Finds today's year
$no_of_days = date('t',mktime(0,0,0,$m,1,$y)); // This is to calculate number of days in a month
$mn=date('F',mktime(0,0,0,$m,1,$y)); // Month is calculated to display at the top of the calendar
$yn=date('Y',mktime(0,0,0,$m,1,$y)); // Year is calculated to display at the top of the calendar
if($m == date('n')) {
$start = strtotime('tomorrow');
$today = true;
} else {
$start = date('U',mktime(1,1,1,$m,1,date('Y')));
}
$end = date('U',mktime(1,1,1,$m+1,0,date('Y')));
?>