webserver-m0/www/public/u1/index.php
2023-08-21 13:14:36 +02:00

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>