Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <html>
  2. <head><title>Multiplication of integers</title></head>
  3. <body>
  4. <center>
  5. <font size="6"><b>Multiplication of integers from 1*1 to 9*9</b></font><hr>
  6. <?
  7. echo "<table border=2 width=45%>";
  8. for ($a = 1; $a <= 10; $a++ ) {
  9. $b=1;
  10. echo "<tr>";
  11. if($a==1)
  12. echo "<td bgcolor=#3399fe >X</td>";
  13. else{
  14. $b=$a-1;
  15. echo "<td>$b</td>";
  16. }
  17. echo "<td>".$b ."</td>";
  18. for ( $c = 2; $c <= 9; $c++ ) {
  19. echo "<td>".$b * $c."</td>";
  20. }
  21. echo "</tr>";
  22. }
  23. echo "</table>";
  24. ?>
  25. </center>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement