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.inc.php

31 lines
800 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:<br>" . $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);
}
}
}
?>