This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sgd/ysqld/test/gaestebuch.php
T

30 lines
591 B
PHP

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Gästebuch</title>
</head>
<body>
<h1>Gästebuch</h1>
<h2>Bisherige Einträge</h2>
<?php
require ("gaestebuch.inc.php");
eintragenGaestebuch();
ausgabeGaestebuch();
?>
<h2>Ihr Beitrag zu unserem Gästebuch</h2>
<form action="gaestebuch.php">
Name:
<input name="name">
<br>
E-Mail:
<input name="email">
<br>
Kommentar
<br>
<textarea name="kommentar" cols="50" rows="5"></textarea>
<br>
<input type="submit">
</form>
</body>
</html>