21 lines
279 B
PHP
21 lines
279 B
PHP
<!DOCTYPE html>
|
|
<html lang="sv">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>WSP-1 PHP</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Hej</h1>
|
|
|
|
<?php
|
|
$x = 2;
|
|
$x++;
|
|
|
|
echo "Talet = $x";
|
|
?>
|
|
</body>
|
|
|
|
</html>
|