Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
dvprog_06_2 [2017-09-22 10:30]
Daniel Viström
dvprog_06_2 [2018-09-17 10:37]
Daniel Viström
Line 2: Line 2:
  
 Gör en tabell som skriver ut tal 1 - 100 i en tabell med tio tal på varje rad. Gör en tabell som skriver ut tal 1 - 100 i en tabell med tio tal på varje rad.
 +
 +{{:tabell100.jpg?400|}}
  
 <code php> <code php>
 <?php <?php
 include('head.php'); include('head.php');
-  +
-$i = 0;  //Tiotal+
 echo '<table>'; echo '<table>';
 +$i = 0;  //Tiotal
 while ($i < 10){    // Loopa $i från 0 - 9 while ($i < 10){    // Loopa $i från 0 - 9
   echo '<tr>';      // Ny rad   echo '<tr>';      // Ny rad