„content/yeet.php“ ändern

master
flambus 2020-01-13 09:15:32 +01:00
parent 2be68996fc
commit c377db15fd
1 changed files with 4 additions and 1 deletions

View File

@ -1,10 +1,13 @@
<?php
$hello = "Hello World!";
?>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<?php
echo "<p> Hello World! </p>";
echo "<p>" . $hello . "</p>";
?>
</body>
</html>