Guest User

Untitled

a guest
Dec 17th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2.  
  3. //get current month
  4. $currentMonth = DATE("m");
  5.  
  6. echo $currentMonth;
  7.  
  8. //retrieve season
  9. if ($currentMonth >= "03" && $currentMonth <="05")
  10.  
  11. $season = "spring";
  12.  
  13. elseif ($currentMonth >= "06" && $currentMonth <= "08")
  14.  
  15. $season = "summer";
  16.  
  17. elseif ($currentMonth >= "09" && $currentMonth <= "11")
  18.  
  19. $season = "autumn";
  20.  
  21. else
  22.  
  23. $season = "winter";
  24.  
  25. ?>
Add Comment
Please, Sign In to add comment