<html>
 
<head>
 
<title>Online Demo for Calendar Class by Abhishek Shukla</title>
 
<style>
 
#calendar-table-s {
 
    font-size: 12px;
 
    margin: 0px;
 
    text-align: left;
 
    border-collapse: separate;
 
    border-bottom:none;
 
}
 
#calendar-table-s th {
 
    font-size: 13px;
 
    font-weight: normal;
 
    padding: 8px;
 
    background: #EFEFEF;
 
    border-top: 1px solid #FFF;
 
    color: #333;
 
    text-align: left;
 
}
 
#calendar-table-s td {
 
    padding: 8px;
 
    background: none; 
 
    border-top: 1px solid #CCC;
 
    color: #666;
 
    border-bottom: none !important;
 
}
 
#calendar-table-s tr:hover td {
 
    background: #FBFBFB;
 
    color: #333;
 
}
 
#calendar-table-s tr.footer { background: none !important; }
 
#calendar-table-s tr.footer:hover td { background: none !important;  }
 
th, td {
 
    vertical-align: top;
 
}
 
</style>        
 
</head>
 
<body>
 
<h1>Single Month Demo</h1>
 
<?php 
 
include("event_calendar.class.php");
 
 
$calendar=new event_calendar;
 
$calendar->tablestyle="calendar-table-s";
 
$calendar->events=array("2014-01-16"=>1,"2014-01-19"=>4,);
 
$thismonthcalendar=$calendar->month_calendar();
 
 
echo $thismonthcalendar;
 
 
?>
 
 
</br></br></br>
 
 
<a href="index.html">Back to Home Page</a>
 
</body>
 
</html>
 
 
 |