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_13 [2017-04-04 14:47]
Daniel Viström
dvprog_13 [2017-09-01 14:54]
127.0.0.1 external edit
Line 25: Line 25:
  
 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');
  
Line 42: Line 42:
  */  */
 function namnutskrift($namn, $antal){ function namnutskrift($namn, $antal){
-  echo $namn . $antal . '<br />';+  echo $namn . $antal . '<br>';
   if ($antal == 1){  // Brytvillkor.   if ($antal == 1){  // Brytvillkor.
   } else {   } else {
Line 49: Line 49:
  // Fortgår tills brytvillkoret nås.  // Fortgår tills brytvillkoret nås.
   }   }
-  echo 'Hej' . $antal . '<br />';  // Skrivs ut när den "inre"-funktionen är färdigkörd.  +  echo 'Hej' . $antal . '<br>';  // Skrivs ut när den "inre"-funktionen är färdigkörd.  
 } }