Thanks a lot for the advice. I was able to get it working in 2 minutes once I read your posts. I se how I had the HTML <? tags which were killing the code. I removed the <? and everthing worked. I also added the return;
If anyone is ever interested in easyPHPcalendar then here are 3 snippets to help the implementation. I will have more snippets when I finish the setup of my site.
http://216.70.102.151
Snippet: [[easyCalHead]]
$CSS=1;
require("calendar/calendar.php");
return;
Snippet: [[easyCalBody]]
$OL=1;
require("calendar/calendar.php");
return;
Snippet: [[easyCalImplement]]
require("calendar/calendar.php");
// SHOW LISTINGS MODULE
// $epcListMouseover=1; // WILL USE THE MOUSE-OVER POPUPS FOR LIST MODE
$LIST=1;
$listEvents = 10;
$listWeeks=52;
$noOld = 1;
$DF = "M jS, Y (D)";
$template="modern.php";
require("calendar/calendar.php");
return;
Here is my template code if it matters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="en-us" lang="en-us" xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
<!--
// Empty script to kill FOUC in IE
// www.bluerobot.com/web/css/fouc.asp
-->
</script>
[[MetaTagsExtra]]
<style type="text/css">@import url(assets/templates/new-E/new-E.css);</style>
{{CoolMenu}}
[[easyCalHead]]
</head>
<body>
[[easyCalBody]]
<div id="bodyLiner">
<div id="lwfHeader">
{{MainBanner}}
</div>
<div id="lwfMenu">
[[CoolMenu?type=horizontal&align=left&top=180&left=0&arrow=0&width=126&height=25]]
</div>
<div id="lwfBanner">
<img src="assets/images/banners/takegodsmall.jpg" alt="Take God at His Word" border="1"/>
<hr>
</div>
<div id="lwfContent">
[*content*]
</div>
<div id="lwfSideCol">
[[easyCalImplement]]
</div>
<div id="lwfFooter">
<p>[!Copyright!] | [[PoweredBy]]</p>
<p>MySQL: [^qt^], [^q^] request(s), PHP: [^p^], total: [^t^],
document retrieved from [^s^].</p>
</div>
</div>
</body>
</html>
[MODERATOR’S NOTE: Code tags added for easier readability.]