Advertisement
gsmashik

how-to-print-january-to-december-using-php

Sep 14th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $month_names = array("January","February","March","April","May","June","July","August","September","October","November","December");
  2. echo "<select>";
  3.  
  4. foreach($month_names as $month)
  5. {
  6. echo "<option>".$month."</option>";
  7. }
  8. echo "</select>";
  9. ?>
  10.  
  11.  
  12.  
  13. <?php
  14. function showMonthNames($month_names)
  15. {
  16. foreach($month_names as $month)
  17. {
  18. echo $month."<br/>";
  19. }
  20.  
  21. }
  22. showMonthNames($month_names);
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement