Guest User

Untitled

a guest
Dec 10th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <html>
  2. <body>
  3. <?php
  4. for( $tafel=1; $tafel<=10; $tafel++)
  5. {
  6. echo "Tafel van $tafel <br/>";
  7. for( $i=1; $i<=10; $i++)
  8. echo "$i x $tafel = " . $i * $tafel . "<br/>";
  9. }
  10. ?>
  11. </body>
  12. </html>
Add Comment
Please, Sign In to add comment