update: add simple php

This commit is contained in:
Patrick Schulze
2026-05-06 08:15:12 +02:00
commit 7378102b19
2 changed files with 19 additions and 0 deletions

8
index.php Normal file
View File

@@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<body>
<?php
echo "Ich liebe Informatik!";
?>
</body>
</html>

11
index2.php Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<body>
<h1>Mein erste PHP website</h1>
<h3>
<?php
echo "Ich liebe Informatik!";
?>
</h3>
</body>
</html>