Jump to content

dynamic hype


fmichiels

Recommended Posts

I must use a hyperlink like this: <a href="https://www.pic-vert.fr/obm/availabilitycalendar.php?id=1&month=2&year=2015&ln=nl">

I want to make it dynamic so that month=2 changes into month='current month' and year = 2015 changes into year = current year.

Any help available ?

Thanks a lot,

Freddy (beginner)

Link to comment
https://forums.phpfreaks.com/topic/294614-dynamic-hype/
Share on other sites

You can use date to get the current month and year. You would then concatenate the month and year to construct the url for the link. Example code

$month = use date() to get the current month;
$year = use date() to get the current year;

// concatate $month and $year to construct the url
$url = 'https://www.pic-vert.fr/obm/availabilitycalendar.php?id=1&month='.$month.'&year='.$year.'&ln=nl';

// output hyperlink
echo '<a href="'.$url.'">Whatever</a>';
Link to comment
https://forums.phpfreaks.com/topic/294614-dynamic-hype/#findComment-1505706
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.