Advertisement
Guest User

Untitled

a guest
Nov 15th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title> Tabellina Random </title>
  5. </head>
  6. <body>
  7. <h1> Tabellina numero random. </h1>
  8. <h4> Questa pagina web ci permette di ottenere la tabellina di un numero ottenuto randomicamente tra 1 e 10.</h4>
  9. <?php
  10. $num = rand(1,10); // dichiaro variabile
  11. echo "Il numero ottenuto randomicamente è: $num </br></br>";
  12. for( $i=0; $i<11; $i++ ) //esegue ciclo for per trovare valori tabella
  13. {
  14. $ris = $i*$num;
  15. echo "<table border=1>
  16. <td>$num*$i</td><td>$ris</td>";
  17.  
  18. }
  19.  
  20. 
  21.  
  22. ?>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement