Include a PHP variable in a URL?

  • Thread starter Thread starter Nick
  • Start date Start date
N

Nick

Guest
Include a PHP variable in a URL?
Hi everyone,

First off, I apologize in advance for being a total newb.

Using the PHP calendar from http://keithdevens.com/software/php_cale... , I want to include the $month variable in the day links. For example, right now I'm using:

<?php

$days = array(
1=>array('/tag/april+1','linked-day'),

);

include 'calendar.php';

echo generate_calendar(2009, 4, $days, 5, '/tag/april');

?>

to link day 1 on the calendar to website.com/tag/april+1

What I want, though, is for the "april" in the URL to update along with the calendar. So, I want to include $month somehow to display the current month. Does anyone know how to do this?

Thanks for any info.
 
Back
Top