Got some problems with my own made guestbook!
The data is always beiing overwritten completly or with mistakes!
Hope someone can help me quickly!
<html>
<head>
<title>Gästebuch</title>
</head>
<body>
<?
if($name == "" && $kommentar == "");
{
$data = fopen("data.txt", "r+");
fgets($data, 65000);
rewind($data);
}
if($name != "" && $kommentar != "");
{
$post = "Name: $name<br>Mail: $mail<br>Homepage: $hp<br>Kommentar: $kommentar<br>";
fwrite($data, $post);
fclose($data);
};
$data = fopen("data.txt", "r");
rewind($data);
$beitraege = fgets($data, 65000);
echo $beitraege;
fclose($data);
?>
<form action="gbook.php" method="post">
<table border="0">
<tr>
<td>Name:</td>
<td><input type="text" name="name"></td>
</tr>
<tr>
<td>E-Mail:</td>
<td><input type="text" name="mail"></td>
</tr>
<tr>
<td>Homepage:</td>
<td><input type="text" name="hp"></td>
</tr>
<tr>
<td colspan="2">Kommentar:<br>
<textarea cols="40" rows="10" name="kommentar"></textarea></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Eintragen!">
<input type="reset" value="Löschen!"></td>
</tr></table>
</form>
</body>
</html>