Jump to content

PHP Agenda Calendar


Scorpion28

Recommended Posts

I'm looking for a way to write a quick Agenda style calendar that will only pull the date given from a database of events?  Can anyone help me out with this?

 

 

if(isset($_REQUEST['day']) && $_REQUEST['day'] != '')
{$timeLine = trim($_REQUEST['day']);}
else{$timeLine = false;}
 
if($timeLine == +1)
{
$NewDate=Date('y:m:d', strtotime("+1 days"));
}
 
elseif($timeLine == -1)
{
$NewDate=Date('y:m:d', strtotime("-1 days"));
}
 
else{ $Today = date('y:m:d'); }
Link to comment
https://forums.phpfreaks.com/topic/276149-php-agenda-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.