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_13 [2019-04-15 08:40]
Daniel Viström
dvprog_13 [2019-12-06 16:10]
Daniel Viström
Line 1: Line 1:
-====== Genomgång 10 - Rekursion ======+====== Genomgång - Rekursion ======
  
 ==== Exempel1 ==== ==== Exempel1 ====
Line 27: Line 27:
 } }
  
-include('head.php');+include 'head.php';
 echo 'a4 = ' . a(4) . '<br>'; echo 'a4 = ' . a(4) . '<br>';
 echo 'a5 = ' . a(5) . '<br>'; echo 'a5 = ' . a(5) . '<br>';
-include('foot.php');+include 'foot.php';
  
 </code> </code>
Line 56: Line 56:
  
  
-include('head.php');+include 'head.php';
  
 $name = 'Ulla'; $name = 'Ulla';
Line 64: Line 64:
 namnutskrift($name, $n); namnutskrift($name, $n);
    
-include('foot.php');+include 'foot.php';
  
 </code> </code>