/gaestebuch/Prinzip:
Dateityp:
Normale Struktur einer HTML-Datei
<html lang="de">
<html lang="de"> <head> </head> <body> </body> </html>
Angabe des Titels
<title>Gästebuch</title> Angabe des Titels
<head> <title>Gästebuch</title> </head>
Wichtig: Löschen des Cache-Speichers
<meta http-equiv="cache-control" content="no-cache"><head> <meta http-equiv="cache-control" content="no-cache"> </head>
<h1> Gästebuch - Guestbook - Livre d'Or </h1>
Einlesen mit der "Include"-Technik:
<?php Anfangs-Tag des PHP-Befehles.
include "../../include/gb/formular.php"; Einlesen des Formulars.
?> End-Tag des PHP-Befehles.
<?php include "../../include/gb/formular.php"; ?>
Einlesen mit der "Include"-Technik:
<?php Anfangs-Tag des PHP-Befehles.
include "../../include/gb/einlesen.php"; Einlesen der Einträge.
?> End-Tag des PHP-Befehles.
<?php include "../../include/gb/einlesen.php"; ?>