Hello,
So, with help from the PHP Gurus here, I have a dynamic menu script:
<?php
$time = time() + 28800;
$time_plus2 = strtotime('+ 6 days');
echo '<select name="select">';
while ($time <= $time_plus2)
{
echo '<option value=>' . date('l, F d', $time) . '</option>';
$time = strtotime(date('Y-m-d', $time) . ' + 1 day');
}
echo '</select>';
?>
Question is: how do I now get the days of the week to link to different pages?