PDA

View Full Version : Hey everyone, I need some help on a calendar...


Chad Roe
06-27-2007, 07:03 AM
Ok, I got the calendar looking exactly how I want it, and running 90% the way I want it, there is just one little ussue I need help with. On the top of the calendar, on each side of the Month, is a < (previous month) and > (next month). Right now, they link to archived files on the creator's blog...how can I make them switch between months? I will include everything below...

Here is the calendar:
http://pics.offroadextremes.com/calendar_ss.gif

This is the code to put in your body:

<?php include('calendar/calendar.php'); ?>
<table border="1" cellpadding="0" cellspacing="0" width="25" height="25" bordercolor="#000000" bgcolor="#F6F3EC">
<tr>
<td bgcolor="#F6F3EC" bordercolor="#FFFFFF">
<?php
$time = time();
$today = date('j',$time);
$cur_day = array($today=>array(NULL,NULL,'<span style="color: red; font-weight: bold;">'.$today.'</span>'));
$pn = array('&lt;'=>'/calendar/archive/2004/Jul', '&gt;'=>'/calendar/archive/2004/Sep');
echo generate_calendar(date('Y', $time), date('n', $time), $cur_day, 2, NULL, 1, $pn);
?>
</td>
</tr>
</table>


Here is the code inside: <?php include('calendar/calendar.php'); ?>

<?php
# PHP Calendar (version 2.3), written by Keith Devens
# http://keithdevens.com/software/php_calendar
# see example at http://keithdevens.com/weblog
# License: http://keithdevens.com/software/license

function generate_calendar($year, $month, $days = array(), $day_name_length = 3, $month_href = NULL, $first_day = 0, $pn = array()){
$first_of_month = gmmktime(0,0,0,$month,1,$year);
# remember that mktime will automatically correct if invalid dates are entered
# for instance, mktime(0,0,0,12,32,1997) will be the date for Jan 1, 1998
# this provides a built in "rounding" feature to generate_calendar()

$day_names = array(); # generate all the day names according to the current locale
for($n=0,$t=(3+$first_day)*86400; $n<7; $n++,$t+=86400) #J anuary 4, 1970 was a Sunday
$day_names[$n] = ucfirst(gmstrftime('%A',$t)); # %A means full textual day name

list($month, $year, $month_name, $weekday) = explode(',',gmstrftime('%m,%Y,%B,%w',$first_of_month));
$weekday = ($weekday + 7 - $first_day) % 7; #adjust for $first_day
$title = htmlentities(ucfirst($month_name)).'&nbsp;'.$year; # note that some locales don't capitalize month and day names

# Begin calendar. Uses a real <caption>. See http://diveintomark.org/archives/2002/07/03
@list($p, $pl) = each($pn); @list($n, $nl) = each($pn); # previous and next links, if applicable
if($p) $p = '<span class="calendar-prev">'.($pl ? '<a href="'.htmlspecialchars($pl).'">'.$p.'</a>' : $p).'</span>&nbsp;';
if($n) $n = '&nbsp;<span class="calendar-next">'.($nl ? '<a href="'.htmlspecialchars($nl).'">'.$n.'</a>' : $n).'</span>';
$calendar = '<table class="calendar">'."\n".
'<caption class="calendar-month">'.$p.($month_href ? '<a href="'.htmlspecialchars($month_href).'">'.$title.'</a>' : $title).$n."</caption>\n<tr>";

if($day_name_length){ # if the day names should be shown ($day_name_length > 0)
# if day_name_length is >3, the full name of the day will be printed
foreach($day_names as $d)
$calendar .= '<th abbr="'.htmlentities($d).'">'.htmlentities($day_name_length < 4 ? substr($d,0,$day_name_length) : $d).'</th>';
$calendar .= "</tr>\n<tr>";
}

if($weekday > 0) $calendar .= '<td colspan="'.$weekday.'">&nbsp;</td>'; # initial 'empty' days
for($day=1,$days_in_month=gmdate('t',$first_of_month); $day<=$days_in_month; $day++,$weekday++){
if($weekday == 7){
$weekday = 0; # start a new week
$calendar .= "</tr>\n<tr>";
}
if(isset($days[$day]) and is_array($days[$day])){
@list($link, $classes, $content) = $days[$day];
if(is_null($content)) $content = $day;
$calendar .= '<td'.($classes ? ' class="'.htmlspecialchars($classes).'">' : '>').
($link ? '<a href="'.htmlspecialchars($link).'">'.$content.'</a>' : $content).'</td>';
}
else $calendar .= "<td>$day</td>";
}
if($weekday != 7) $calendar .= '<td colspan="'.(7-$weekday).'">&nbsp;</td>'; # remaining "empty" days

return $calendar."</tr>\n</table>\n";
}
?>

darksidepuffin
06-28-2007, 03:51 AM
Are the archive files JUST the calendar display?or the entire page?

If they're just the calendar..you can do something such as reloading the page with a get variable set for the month and year of the calendar in question...check if an archive exists..and if it does, include it..otherwise generate the calendar as normal.

eg:


$file = $_GET["month"].'-'.$_GET["year"]'.php';

if(file_exists('/path/to/archives/'.$file))
{
include('/path/to/archives/'.$file);
}
else
{
//generate calendar
}