A graphical calendar
This simply displays the month , date and year as images in a table .
Here is the code.
<?php
$year = date("Y");
$month = date("M");
$day = date("jS");
echo "<table>";
echo "<tr>";
echo "<td><img src =\"$month.gif\"></td>";
echo "</tr>";
echo "<tr>";
echo "<td><img src =\"$day.gif\"></td>";
echo "</tr>";
echo "<tr>";
echo "<tr>";
echo "<td><div align=\"right\"><img src =\"$year.gif\"></div></td>";
echo "</tr>";
echo "</table>";
?>
and here is the output
here are the images
calendarimages.zip