Jump to content

php calendar


bradkenyon

Recommended Posts

i am using http://keithdevens.com/software/php_calendar to display the calendar.

 

now i want to take the events within a db table i have w/ events, marked by a timestamp, example timestamp would be 2008-05-07.

 

I want to through the table and grab all the events from may, and link the dates correctly on the calendar, linking the days on the calendar as an id or by the timestamp, whichever you feel is better.

 

here is sample code to get it working hard coded.

 

<?

						$days = array
								(
									14=>array('/weblog/archive/2004/Jan/02','linked-day'),
									3=>array('/weblog/archive/2004/Jan/03','linked-day'),         
									8=>array('/weblog/archive/2004/Jan/08','linked-day'),         
									22=>array('/weblog/archive/2004/Jan/22','linked-day')
								);     
								//echo generate_calendar(2004, 11, $days, 3, '/weblog/archive/2004/Jan'); 
								echo generate_calendar(date("Y"), date("m"), $days, 3, '/events/?id='.$row['tstamp'].'');
					?>

 

 

 

 

[attachment deleted by admin]

Link to comment
https://forums.phpfreaks.com/topic/104553-php-calendar/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.