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_11 [2017-09-01 13:43]
Daniel Viström
dvprog_11 [2019-09-09 09:24]
Daniel Viström
Line 62: Line 62:
  * göra dem tillgängliga med include.  * göra dem tillgängliga med include.
  */  */
-include('functions.php');+include 'functions.php';
  
-include('head.php');+include 'head.php';
  
 // php har en massa färdiga funktioner, bl.a. för strängar. // php har en massa färdiga funktioner, bl.a. för strängar.
Line 109: Line 109:
 echo '<br>'; echo '<br>';
  
-include('foot.php');+include 'foot.php';
  
 </code> </code>