webserver-m0/www/public/u1/index.php

21 lines
279 B
PHP
Raw Normal View History

2023-08-21 11:14:36 +00:00
<!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>