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
dvprog_07 [2018-11-19 10:20]
Daniel Viström
dvprog_07 [2019-09-09 09:21]
Daniel Viström
Line 15: Line 15:
 // Lägga in data i array // Lägga in data i array
 // Skriva ut ett värde på en speciell position // Skriva ut ett värde på en speciell position
-include('head.php');+include 'head.php';
  
 $names = ['Astrid', 'Birgitta', 'Cecilia']; $names = ['Astrid', 'Birgitta', 'Cecilia'];
Line 64: Line 64:
 echo $arr3['colors'][2];  // Först yttre nyckeln, sedan inre nyckeln. echo $arr3['colors'][2];  // Först yttre nyckeln, sedan inre nyckeln.
  
-include('foot.php');+include 'foot.php';
 </code> </code>