Advertisement
HristoGrigorov

Untitled

Jul 20th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>First Steps Into PHP</title>
  6. </head>
  7. <body>
  8. <?php
  9. for($i = 0; $i<9; $i++){
  10. for ($k = 0; $k<5; $k++){
  11. $color = "buttonface";
  12. $num = 0;
  13. if (($i ==0 || $i == 4 || $i == 8)|| ($i<4 && $k == 0) ||($i >4 && $k == 4)){
  14. $color = "blue";
  15. $num = 1;
  16. }?>
  17. <button style="background:<?=$color ?>"><?= $num ?></button>
  18. <?php } ?>
  19. <br>
  20. <?php }
  21. ?>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement