Eine simple Unterschriftenliste
<?php
/*
Unterschriftenliste
Aktion: PHP Scripte für die armen dieser Welt
Der Erlös geht für mein Pausenbrot drauf
Copyright (c) 2004 by Phillip 'Firebird' Berndt
*/
if(isset($_POST['action']))
{
$self = fopen(__FILE__, "a+");
$name = htmlentities($_POST['name']);
$wohnort = htmlentities($_POST['wohnort']);
$email = htmlentities(str_replace("@", "[AT]", $_POST['email']));
$text = "<b>$name</b> aus $wohnort, Erreichbar über $email<br />\n";
fwrite($self, $text);
fclose($self);
header("Location: ".$_SERVER['REQUEST_URI']);
die();
}
?>
<h1>Unterschriften</h1>
<form method="post" action="<?=$_SERVER['REQUEST_URI']?>">
Name: <input type="text" name="name" />
Wohnort: <input type="text" name="wohnort" />
Email: <input type="text" name="email" />
<input type="submit" name="action" value="Abschicken" />
</form>
<hr />
<b>Phillip Berndt</b> aus Lüneburg, Erreichbar über Mail[AT]localhost<br />