Advertisement
Guest User

helppp

a guest
Nov 22nd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <head>
  2. </head>
  3. <body>
  4. <style>
  5. table, tr, td, th{
  6. border: 1px solid black;
  7. text-align: center;
  8. margin: 0;
  9. padding: 0;
  10. }
  11. </style>
  12. <table>
  13. <th>
  14. <p> </p>
  15. </th>
  16. <?php
  17. for($i=1;$i<=10;$i++){
  18. echo "<th>".($i*12)."</th>";
  19. }
  20. for($a=12;$a<=120;$a=$a+12){
  21.  
  22. echo "<tr>";
  23. echo "<th>".$a."</th>";
  24. for($b=12;$b<=120;$b=$b+12){
  25. if($a == $b)
  26. {
  27. echo "<td style='background-color: yellow'>".($a*$b)."</td>";
  28. }
  29. else if($a==$b)
  30. {
  31. echo "<td>".($a*$b)."</td>";
  32. }
  33. echo "<td>".($a*$b)."</td>";
  34. }
  35. echo "</tr>";
  36. }
  37. ?>
  38. </table>
  39. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement