Posts

Showing posts with the label Date Time

Display hours in select box with am/pm using php

Display hours in select box with am/pm using php Select Hour :- <select name="starthour" style="padding:5px;">     <?php       date_default_timezone_set('Asia/Kolkata');       $currentDateTime=date('m/d/Y H:i:s');       $curtime = date('H', strtotime($currentDateTime));       $starttime = 00;       $endtime = 23;       $endloop = ($starttime + $endtime);       for($hour = $starttime; $hour <=  $endloop ; $hour ++ )       {           $showtime = $hour.':00:00';       ?>       <option value="<?php echo $hour; ?>" <?php if($curtime == $hour) echo "selected='selected'" ?>><?php echo date('h A', strtotime($showtime)); ?></opt...

Display hours in select box with am/pm using coldfusion

Display hours in select box with am/pm using coldfusion. Select Hour :- <select name="starthour" style="padding:5px;">     <cfset curtime = TimeFormat(Now(),'HH')>     <cfset starttime = 00>     <cfset endtime = 23>         <cfset endloop = (starttime + endtime)>         <cfloop from="#starttime#" to="#endloop#" index="hour">             <cfset showtime = hour & ':00:00'>             <option value="#hour#"<cfif curtime eq hour> selected="selected"</cfif>>#TimeFormat((showtime),'hh tt')#</option>         </cfloop> </select> </cfoutput>