PDA

View Full Version : Display problem


amyb
10-07-2006, 02:15 AM
I am trying to use the "list Mode" instead of the "normal" mode. When I insert the code for normal mode, it appears fine. When I insert the code for "list" mode, I get a blank page.
Thanks for any help.
the URL is: http://www.sandiegolocales.com/events.php

Do I have something selected in the set up manager that would cause it to not display or is it strictly a code issue?

Brian
10-07-2006, 10:19 AM
The List Mode seems to work on your demo.php page so I'm not sure why it wouldn't on your own page(s). Please reply and zip and attach your events.php with the List Mode code that doesn't work.

amyb
10-07-2006, 08:45 PM
Here is the Zip file, Thanks.

Brian
10-08-2006, 01:29 PM
This line of code is incorrect:

<?php$LIST=1; $DF = "D - M d"; $template="monthly.php"; require ("calendar/calendar.php"); ?>

It should be (you're missing a space at the beginning):

<?php $LIST=1; $DF = "D - M d"; $template="monthly.php"; require ("calendar/calendar.php"); ?>

amyb
10-08-2006, 02:43 PM
Thanks, I copy and pasted the code from the Instruction manual online.