Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbsrvprg/exercises/lekt1/

upg1.php
upg2.php
upg3.php
upg4.php
upg5.php
upg6.php
upg7.php

upg2.php

22 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html>
<body>

<?php
$text1 
"Kalle";
$enamn "Anka";
$tal 16;
$road "Ankvägen";
echo 
"$text1 $enamn bor på $road $tal";

echo 
'$text1 $enamn bor på $road $tal';

echo 
$text1.' '.$enamn.' bor på '.$road.' '.$tal;



?> 

</body>
</html>