Completed assignment.

This commit is contained in:
2025-11-12 09:23:31 +01:00
parent 329c6a5069
commit fcc0ae8f9c
4 changed files with 104 additions and 0 deletions

24
index.php Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Grundlagen</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Übung 1</h1>
<nav>
<p><a href="info.php">PHP Info anzeigen</a> | <a href="test.php">Tankstellenberechnung (Aufgabe 3)</a></p>
</nav>
<?php
$x = 23;
$result = $x + $x;
echo "My Number: $result";
?>
</body>
</html>