Advertisement
sajjad_hira

Loop

Aug 10th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <html>
  2. <!--
  3. day
  4. <select>
  5. <?php
  6. $day = 1;
  7. for($day>1;$day<=31;$day++){
  8.    
  9.     // if($day%2==0){
  10.     echo '<option>'.$day; echo '</option>';
  11.     // }
  12. }
  13.  
  14. ?>
  15. </select>
  16. <br/>
  17. <br/>
  18. -->
  19.  
  20. <?php
  21.  
  22.  
  23.  
  24. ?>
  25.  
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement