phpretard Posted March 18, 2009 Share Posted March 18, 2009 I am trying to get a time select box From: 8:00am To: 5:00pm I need both select boxes to go in order all the way around the clock BUT The From: select box should have 8:00am selected The To: select box should have 5:00pm selected <select> <? for ($i=1; $i < 12; $i++) { $Schedule="<option>$i:00am</option>"; echo $ScheduleAM; } ?> </select> My brain hurts. Link to comment https://forums.phpfreaks.com/topic/149988-shouldnt-this-be-simple/ Share on other sites More sharing options...
Ayon Posted March 18, 2009 Share Posted March 18, 2009 could try adding something like this to your code? if ($i == { $Schedule="<option selected>$i:00am</option>"; } Link to comment https://forums.phpfreaks.com/topic/149988-shouldnt-this-be-simple/#findComment-787703 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.