Advertisement
Militsa

16.Draw an S with Buttons

Jan 3rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 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. <!--Write your PHP Script here-->
  9. <?php
  10. for($i = 1; $i<=9; $i++) {
  11.     for($j = 1; $j <= 5; $j++) {
  12.         if($i == 1 || $i == 5 || $i ==9 || ($i>=2 && $i<5 && $j == 1) || ($i>=6 && $i<9 && $j == 5)) {
  13.             echo "<button style='background-color:blue'>1</button>";
  14.         } else {
  15.             echo "<button>0</button>";
  16.         }
  17.     }
  18.     echo "<br>";
  19. }
  20. ?>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement