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 Both sides next revision
prog1_04 [2018-09-17 09:31]
Daniel Viström
prog1_04 [2019-09-09 09:19]
Daniel Viström
Line 5: Line 5:
 <code php> <code php>
 <?php <?php
-include('head.php');+include 'head.php';
 $i=0; $i=0;
 while ($i < 10) { while ($i < 10) {
Line 11: Line 11:
   $i++;   $i++;
 } }
-include('foot.php');+include 'foot.php';
 </code> </code>