ok na working na sir.
ung server ko pala ang may problem.
so i change into xampp.

and now its working properly...
<?php
require_once('auth.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>My Profile</title>
<link href="loginmodule.css" rel="stylesheet" type="text/css" />
<link href="include/home.css" rel="stylesheet" type="text/css" />
</head>
<body >
<table id="body" align="center">
<tr>
<td>
<h1>My Profile </h1>
<a href="member-index.php">Home</a> | <a href="logout.php">Logout</a>
<p>This is another secure page. </p>
<table style="margin: auto">
<tr>
<?php
$madj=$_GET['madj'];
if(isset($prm) and $prm > 0){
$m=$prm+$chm;}else{
$m= date("m")+$madj;
}
$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('M',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
$j= date('w',mktime(0,0,0,$m,1,$y)); // This will calculate the week day of the first day of the month
for($k=1; $k<=$j; $k++){ // Adjustment of date starting
$adj .="<td> </td>";
}
/// Starting of top line showing name of the days of the week
echo " <table border='1' bordercolor='#FFFF00' cellspacing='0' cellpadding='0' align=left>
<tr><td>";
echo "<table cellspacing='0' cellpadding='0' align=center width='350' height='300' border='0'><td align=center bgcolor='#ffff00'><font size='3' face='Tahoma'> <a href='".$_SERVER['PHP_SELF']."?madj=".($madj-1)."'><<</a> </td><td colspan=5 align=center bgcolor='#ffff00'><font size='5px' face='Tahoma'>$mn $yn </td><td align=center bgcolor='#ffff00'><font size='4' face='Tahoma'> <a href='".$_SERVER['PHP_SELF']."?madj=".($madj+1)."'>>></a> </td></tr><tr>";
echo "<td><font size='3' face='Tahoma'><b>Sun</b></font></td><td><font size='3' face='Tahoma'><b>Mon</b></font></td><td><font size='3' face='Tahoma'><b>Tue</b></font></td><td><font size='3' face='Tahoma'><b>Wed</b></font></td><td><font size='3' face='Tahoma'><b>Thu</b></font></td><td><font size='3' face='Tahoma'><b>Fri</b></font></td><td><font size='3' face='Tahoma'><b>Sat</b></font></td></tr><tr>";
////// End of the top line showing name of the days of the week//////////
//////// Starting of the days//////////
for($i=1;$i<=$no_of_days;$i++){
echo $adj ."<td valign=top><font size='3' face='Tahoma'><a href='".$_SERVER['PHP_SELF']."?$y-$m-$i'>$i</a><br>"; // This will display the date inside the calendar cell
echo " </font></td>";
$adj='';
$j ++;
if($j==7){echo "</tr><tr>";
$j=0;}
}
echo "<tr><td colspan=7 align=center></td></tr>";
echo "</tr></table></td></tr></table>";
?>
<div id="wrap">
6:00 to 6:30 <br />
6:30 to 7:00 <br />
7:00 to 7:30 <br />
7:30 to 8:00 <br />
8:00 to 8:30 <br />
8:30 to 9:00 <br />
9:00 to 9:30 <br />
9:30 to 10:00 <br />
10:00 to 10:30 <br />
10:30 to 11:00 <br />
11:00 to 11:30 <br />
11:30 to 12:00 <br />
12:00 to 12:30 <br />
12:30 to 13:00 <br />
13:00 to 13:30 <br />
13:30 to 14:00 <br />
14:00 to 14:30 <br />
14:30 to 15:00 <br />
15:00 to 15:30 <br />
15:30 to 16:30 <br />
16:30 to 17:00 <br />
17:00 to 17:30 <br />
17:30 to 18:00 <br />
18:00 to 18:30 <br />
18:00 to 19:00 <br />
19:00 to 19:30 <br />
19:30 to 20:00 <br />
20:00 to 20:30 <br />
20:30 to 21:00 <br />
</div>
</tr>
</table>
</td>
</td>
</table>
</body>
</html>