> // build your links > // this will, of course, change with your dating schema > $prev_link = "http://yourdomain.com/?$prev_year-$prev_month-$prev_day; > $next_link = "http://yourdomain.com/?$next_year-$next_month-$next_day;
Sorry, I omitted the closing quote mark on these lines. Here is a non-syntax-error-ridden version: <?php $prev_link = "http://yourdomain.com/?$prev_year-$prev_month-$prev_day"; $next_link = "http://yourdomain.com/?$next_year-$next_month-$next_day"; ?> Sorry! -- [ joel boonstra | [EMAIL PROTECTED] ] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php