mtagg
Newbie
Posts: 1
Registered: 12/5/2003
Member Is Offline
|
| posted on 12/5/2003 at 04:44 PM |
|
|
Intalling Evnt Calendar
I am realy stuck I installed as directed what do I do next? create a page with the following in the body
<?
include 'path_to_calendar_dir_files/calendar.php';
i.e. C:\progs\calendar\calendar.php?
?>
here you can put any HTML code
<?
show_calendar(Your_calendar_name); Which Calendar Where from?
?>
here you can put any HTML code
<?
show_event($CLd,$CLm,$CLy,Your_calendar_name);
What calendar name
?>
This doesnt make sense what is the control panel where is it?
Please Help frustrated school network manager
|
|
|
nazwiz
Member
Posts: 15
Registered: 11/24/2003
Member Is Offline
|
| posted on 12/5/2003 at 06:25 PM |
|
|
Using Calendar
Go here to log into the control panel:
php_event_calendar files/cl_files/index.php
I think there is also an index.html file that gives more information about the demo, and the login. You should go there first. You can find that in
the files.
You display a calendar with code such as the following:
<html>
<head>
<title>Calendar Demo</title>
<?
include '/path to calendar /php_event_calendar/cl_files/calendar.php';
?>
</head>
<body>
<table><tr><td>
</td>
<td width=200>
<?
show_calendar(Demo_horizontal);
?>
</td>
<td>
<?
show_event($CLd,$CLm,$CLy,Demo_horizontal);
?>
</td>
</tr>
</table>
</body>
</html>
The documentation needs more explanation about these things, as you say.
|
|
|