<!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>Manual ----- Calendar Generator</title>
<style type="text/css">
<!--
.style4 {
font-size: 12px;
font-family: Tahoma;
}
.style5 {font-size: 12px; font-family: Tahoma; font-weight: bold; }
-->
</style>
</head>
<body>
<p class="style4"><strong> Calendar Generator <gobinathm at gmail dot com> </strong><strong> </strong></p>
<p class="style4"> The Class Can be used to Generate a Calendar Dynamically by passing the month and the year. You can also create the calendar, with respect to the Server Time. <br />
<br />
Here is the Example create by implementing the class.. </p>
<ol class="style4">
<li><?php </li>
<li>require_once("calendar.class.php"); </li>
<li></li>
<li>$cal = new calendar(); </li>
<li></li>
<li>$Month = 12; </li>
<li>$Year = 1988; </li>
<li></li>
<li>// Calendar For Assigned Date </li>
<li>$cal->AssignDate($Month,$Year); // Required Parameter is Month and Year, respectively </li>
<li>$cal->GenerateCalendar(); </li>
<li></li>
<li>?> </li>
</ol>
<strong> </strong><span class="style4"><strong>
Line 2 :</strong> Includes the Calendar Class to this script <strong><br />
</strong><strong>
</strong><strong>
Line 4 :</strong> Create an object of the calendar generator <strong><br />
Line 6 & 7: </strong>Assign Values to for the Month & Year so that we can generate a calendar for that particualr month & year <strong>(If You Pass '0' for Both the Parameter, then You can generate A calendar with respect to the server date) <br />
Line 10 :</strong> Call the function which assigns the data <strong><br />
Line 11 :</strong> Call to the calender Generation Function </span>
<p class="style4">Active Link: <a href="http://gobinath.com/calendar/example.php" target="_blank">http://gobinath.com/calendar/example.php </a></p>
<span class="style4">Alternative Download Link :<a href="http://gobinath.com/calendar/calendar.zip"> http://gobinath.com/calendar/calendar.zip</a></span>
<p class="style4"> </p>
</body>
</html>