I thought about that too... But here's my code.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" " http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Easy PHP Calendar</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<?php $CSS=1; require("calendar.php"); ?>
<style type="text/css">
<!--
.style1 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
}
-->
</style>
</head>
<body>
<?php $OL=1; require("calendar.php"); ?>
<div align="center">
<span class="style1">[ To modify the design/layout of this page, edit the demo.php file. ]<br />
<br />
<a href="setup/index.php">Setup Manager</a> | <a href="events/index.php">Event Manager</a> | <a href="events/index.php"><a href=" http://docs.easyphpcalendar.com/" target="_blank">Instructions</a></a></span><br />
<br />
</div>
<table width="100%" align="center">
<tr><td align="center">
<?php
$TOC=1; require("calendar.php");
//unset($epcAltLink); $epcAltLink=" http://www.easyphpcalendar.com/"; // UNCOMMENT THIS LINE TO USE THE ALT LINK FEATURE
?>
<br /><br />
<?php
// SHOW LISTINGS MODULE
$epcListMouseover=1; // WILL USE THE MOUSE-OVER POPUPS FOR LIST MODE
$LIST=1;
$listMonths=3;
$DF = "M jS, Y (D)";
$template="monthly.php";
require("calendar.php");
?>
</td>
<td width="0" align="left" valign="top">
<a name="escOL"> </a>
</td>
</tr></table>
</body>
</html>
|