Hi,
At the risk of sounding like a complete idiot I am totally stumped.
Can anyone please help me
I am using escal version 5.4.
I can successfully run the demo.php file (see
http://www.cityviewchurch.com.au/calendar/demo.php) but when I try to include the calendar in a web page the calendar does not show up.
The test web page can be found at
http://www.cityviewchurch.com.au/calendar/iandemo.html
Both the HTML and the PHP scripts are in the same directory.
Any help to get me going would be much appreciated.
Thanks in advance
Kind regards
Ian Cook
(Author of Kirby Alarm and Task Scheduler
www.kirbyfooty.com)
-----------------------------------------------------------
The html code is as follows..
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Easily Simple Calendar Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<?php $CSS=1; require ("showCalendar.php"); ?>
</head>
<body>
<?php $OL=1; require ("showCalendar.php"); ?>
<h1>Testing Calendar</h1>
<table align="center">
<tr><td>
<?php require ("showCalendar.php"); ?>
</td>
<td width="0" align="left" valign="top">
<a name="escOL"> </a>
</td>
</tr></table>
<br />
<div align="center">
<?php
$LIST=1;
$DF = "D - M d";
$template="monthly.php";
require ("showCalendar.php");
?>
</div>
</body>
</html>
---------------------------------------------------
The demo php code is ...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Easily Simple Calendar Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<?php $CSS=1; require ("showCalendar.php"); ?>
</head>
<body>
<?php $OL=1; require ("showCalendar.php"); ?>
<table align="center">
<tr><td>
<?php require ("showCalendar.php"); ?>
</td>
<td width="0" align="left" valign="top">
<a name="escOL"> </a>
</td>
</tr></table>
<br />
<div align="center">
<?php
$LIST=1;
$DF = "D - M d";
$template="monthly.php";
require ("showCalendar.php");
?>
</div>
</body>
</html>