Guest User

Untitled

a guest
Jan 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <?php
  2. $saat = 22;
  3.  
  4. if($saat < 12)
  5. $renk = "blue";
  6. elseif($saat < 20)
  7. $renk = "yellow";
  8. else
  9. $renk = "black";
  10.  
  11. echo "<body bgcolor=$renk>";
  12. ?>
Add Comment
Please, Sign In to add comment