Jump to content

Including a dynamic variable in a URL


joejj

Recommended Posts

Hi everyone,

 

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

 

Using the PHP calendar from http://keithdevens.com/software/php_calendar , 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.

Link to comment
https://forums.phpfreaks.com/topic/152876-including-a-dynamic-variable-in-a-url/
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.