joejj Posted April 6, 2009 Share Posted April 6, 2009 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.