Initial push for phpTutorial

This commit is contained in:
Patryk Hegenberg 2022-12-10 12:54:39 +01:00
commit 750cbe7cd4
2 changed files with 19 additions and 0 deletions

16
index.php Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Demo</title>
</head>
<body>
<h1>
<?php
echo "Hello, World";
?>
</h1>
</body>
</html>