Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $startTime = 01:00:00;
  2. $endTime = 07:00:00;
  3.  
  4. <select class="" name="time">
  5.  
  6. <?php while($endTime != $startTime){
  7.  
  8. $s = $startTime;
  9. $e = date("H:i:s", strtotime("$startTime + 1 hours"));
  10. ?>
  11. <option value="1"><?php echo date('g:i a', strtotime($s)); ?> - <?php echo date('g:i a', strtotime($e)); ?></option>
  12.  
  13. <?php $startTime = $e;
  14.  
  15. }?>
  16.  
  17. </select>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement