Completed assignment.
This commit is contained in:
24
index.php
Normal file
24
index.php
Normal 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>
|
||||
Reference in New Issue
Block a user