25 lines
468 B
PHP
25 lines
468 B
PHP
<!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>
|