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
dvprog_06_2 [2017-09-22 10:34]
Daniel Viström
dvprog_06_2 [2020-05-18 20:24]
Daniel Viström
Line 7: Line 7:
 <code php> <code php>
 <?php <?php
-include('head.php')+include 'head.php'; 
- + 
 +echo '<table>';
 $i = 0;  //Tiotal $i = 0;  //Tiotal
-echo '<table>'; 
 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
Line 24: Line 24:
 echo '</table>'; echo '</table>';
    
-include('foot.php'); +include 'foot.php';
-?>+
 </code> </code>