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_01_2 [2018-08-24 12:36]
Daniel Viström
dvprog_01_2 [2019-08-22 11:30]
Daniel Viström
Line 18: Line 18:
 echo 'Hello world!'; //Världens mest använda textrad för test av program! echo 'Hello world!'; //Världens mest använda textrad för test av program!
 echo '<br>'; //Skriver ut htmltaggen <br> echo '<br>'; //Skriver ut htmltaggen <br>
 +
 $text = 'Detta är text i en variabel'; //En variabel defineras. En variabel börjar alltid med $. $text = 'Detta är text i en variabel'; //En variabel defineras. En variabel börjar alltid med $.
 echo $text; echo $text;
 +
 +echo '<br>Hej då!<br>';
 ?> ?>