Hi
I would like to create a event flash calendar that could communicate with PHP. I’ve found this component build with flash call dateChooser and I’m using it as my default calendar. The calendar should read strings that’s on my PHP page for example:
<?php
// The $events array will call data from database
$events = array(“2/14/2008”, “2/22/2008”, “2/27/2008”);
$totalEvents = count($events);
foreach($events as $key => $value){
print “&$key=$value”;
}
print “&totalEvents=$totalEvents”;
?>
This outputs: &0=2/14/2008&1=2/22/2008&2=2/27/2008&totalEvents=3
Base on the value output by PHP, the calendar should read them and high light those days. For example: 2/14/2008 is output by PHP so the calendar should high light the 14th and if there are more events high light those days as well.
That’s where I’m stocked. Anyone knows how to create such calendar please help. Any suggestion is welcome.
Thanks