mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-22 15:13:42 +01:00
22 lines
424 B
PHP
Executable File
22 lines
424 B
PHP
Executable File
<?php
|
|
|
|
$dateiname = $_GET['dateiname'];
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Fotogalerie - Foto <?= htmlspecialchars($dateiname); ?></title>
|
|
</head>
|
|
<body>
|
|
<h1>Foto <?= htmlspecialchars($dateiname); ?></h1>
|
|
<p>
|
|
<img src="fotos/<?= htmlspecialchars($dateiname); ?>" alt="<?= htmlspecialchars($dateiname); ?>">
|
|
</p>
|
|
<p>
|
|
<a href="index.php">Zurück</a>
|
|
</p>
|
|
</body>
|
|
</html>
|