Show sourcecode
The following files exists in this folder. Click to view.
webbserverprogrammering/exercises/grunder/
ovning_1.php
ovning_2.php
ovning_3.php
ovning_4.php
ovning_7.php
ovning_2.php
23 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/dark.css">
<title>Övning 2</title>
</head>
<body>
<?php
$text1 = "Kalle";
$enamn = "Anka";
$tal = 16;
$road = "Ankvägen";
echo "$text1 $enamn bor på $road $tal";
echo "<br>";
echo '$text1 $enamn bor på $road $tal';
echo "<br>";
echo $text1." ".$enamn." bor på ".$road." ".$tal;
?>
</body>
</html>