Advertisement
Guest User

Untitled

a guest
Oct 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. function getpage(){
  3. $h=date("G");
  4. if(($h < 12)|| ($h > 5)){
  5. return ("rano.html");
  6. }
  7. elseif(($h > 13)|| ($h < 18)){
  8. return ("popoludniu.html");
  9. }
  10. elseif(($h > 19)|| ($h < 21)){
  11. return ("wieczor.html");
  12. }
  13. elseif(($h > 22)|| ($h < 4)){
  14. return ("noc.html");
  15. }
  16. }
  17. include(getpage());
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement