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/ysql12d/gaestebuch.inc.php
T

32 lines
933 B
PHP

<?php
function ausgabeGaestebuch(){
$fp = @fopen('gaestebuch.csv', 'r');
if ($fp == false) {
$fp = fopen('gaestebuch.csv', 'w');
fclose($fp);
} else{
$counter = 0;
while ($zeile =fgetcsv($fp, 500, "#")) {
echo ++$counter . ".<br>";
echo "NAME: " . $zeile[0];
echo "<br>E-Mail: " . $zeile[1];
echo "<br>Kommentar: " . $zeile[2] . "<hr>";
}
fclose($fp);
}
}
function eintragenGaestebuch(){
if (isset($_GET['name']) AND isset($_GET['email']) AND isset($_GET['kommentar'])) {
if (($_GET['name'] != '') AND ($_GET['email'] != '') AND ($_GET['kommentar'] != '')) {
$str = $_GET['name'] . "#" . $_GET['email'] . "#" . $_GET['kommentar'] . "\n";
$fp = fopen("gaestebuch.csv", 'a');
fwrite($fp, $str);
fclose($fp);
}
}
}
?>