OK - this works great - BUT there's an oddity that I can't seem to find:
This is my code snippit:
<br /> $hearinglist = "<select name=\"hearing\" class=\"formboxes\">";<br /> $count = 0;<br /> $firstdate = strtotime("this Monday 09:00 PM");<br /> $hearinglist .= "<option value=\"\">Select a Date...</option>";<br /> while ($count < 10) {<br /> $firstdatenew = date("l, F j,Y h:i A",$firstdate);<br /> $hearinglist .= "<option value=\"$firstdate\">$firstdatenew</option>";<br /> $firstdate = $firstdate + 604800;<br /> $count++;<br /> } <br /> $hearinglist .= "</select>"; <br />Which makes a pull down menu of the next 10 mondays at 9:PM
Although - when you view it, it shows a time of 10PM.
I got around this by requesting "this monday at 08:00 PM" but I was curious if there's a flag I need to daylight savings time or something.

Thanks!