PHP_Dude: PHP, eintrag in textfile per formular

Beitrag lesen

Hier mal mit Formular:

<?php
if($_POST['submit']) {
  $datei = fopen("liste.txt", "a");
  fwrite($datei,$_POST['link'].'#'.$_POST['pfad'].'#'.$_POST['datum'].'#'.$_POST['status']);
  fclose($datei);
}
?>
<html>
<body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method="post" action="<?=$_SERVER['PHP_SELF']?>">
Link:<input type="text" name="link"><br>
Pfad:<input type="text" name="pfad"><br>
Datum:<input type="text" name="datum"><br>
Status:<select name="status">
       <option>done</option>
       <option>sonstwas</option>
       </select><br>
<input type="submit" name="submit" value="Eintragen">
</form>
</body>
</html>