enter in een formulierveld
ik heb een gastenboek gemaakt en als nu iemand een bericht zet en halverwege op enter drukt in een textarea veld dan wordt dit niet opgenomen in het txt bestand. wat moet ik hiertegen doen?
PHP hulp
15/01/2025 07:08:19Rick
26/08/2004 12:41:00<html>
<head><title>Gastenboek</title></head>
<body>
</body>
</html>
</html>
<head><title>Gastenboek</title></head>
<body>
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
$file = "gastenboek.txt";
$invoegen = "<br><hr width=400><table width=400 border=0 cellspacing=0 cellpadding=7><tr>
<td width=60 valign=top><font color=red face=system><b>naam:</b></font></td>
<td><font face=system>" . strip_tags($_GET['naam']) . "</font></td></tr>";
$invoegen.= "<tr><td valign=top width=60><font color=red face=system><b>bericht:</b></font></td>
<td><font face=system>" . strip_tags($_GET['bericht']) . "</font></td></tr></table>";
$fopen = fopen($file, "a");
fwrite($fopen, $invoegen);
fclose($fopen);
$file = "gastenboek.txt";
$fopen = fopen($file, "r");
$data = fgets($fopen, 4096);
fclose($fopen);
echo "<a href=nieuwbericht.php>plaats beriggie</a>";
echo "<center>" . $data . "</center>";
?>
$file = "gastenboek.txt";
$invoegen = "<br><hr width=400><table width=400 border=0 cellspacing=0 cellpadding=7><tr>
<td width=60 valign=top><font color=red face=system><b>naam:</b></font></td>
<td><font face=system>" . strip_tags($_GET['naam']) . "</font></td></tr>";
$invoegen.= "<tr><td valign=top width=60><font color=red face=system><b>bericht:</b></font></td>
<td><font face=system>" . strip_tags($_GET['bericht']) . "</font></td></tr></table>";
$fopen = fopen($file, "a");
fwrite($fopen, $invoegen);
fclose($fopen);
$file = "gastenboek.txt";
$fopen = fopen($file, "r");
$data = fgets($fopen, 4096);
fclose($fopen);
echo "<a href=nieuwbericht.php>plaats beriggie</a>";
echo "<center>" . $data . "</center>";
?>
</body>
</html>
</html>
Ik weet niet of je het hierin kan toepassen, ik had dat probleem ook maar ik werk met een dbase, mijn oplossing was nl2br plaatsen waar hij het weer opvroeg