Parse error: parse error, unexpected $end in C:\wamp\www\formulier8.php on line
<form action="" method="post">
Code (php)
1
2
3
4
5
6
2
3
4
5
6
<?php
$naam=$_POST["naam"];
$titel=$_POST["titel"];
$versturen=$_POST["versturen"];
$commentaar=$_POST["commentaar"];
?>
$naam=$_POST["naam"];
$titel=$_POST["titel"];
$versturen=$_POST["versturen"];
$commentaar=$_POST["commentaar"];
?>
Aanspreekvorm <input type="radio" name="titel" value="m"> Mijnheer
<input type="radio" name="titel" value="v"> Mevrouw
<br><br>
Uw naam: <input type="text" name="naam" value="
Code (php)
1
<?php if (isset($naam)) {$naam=htmlspecialchars($naam); $naam=stripslashes($naam); echo $naam;} ?>
<br><br>
Uw commentaar: <br>
<textarea name="commentaar" cols="60" rows="4" wrap="soft">
Code (php)
1
2
3
4
5
6
2
3
4
5
6
<?php
if (isset ($commentaar)){
$commentaar=htmlspecialchars($commentaar);
$commentaar=stripslashes($commentaar);
echo $commentaar; }
?>
if (isset ($commentaar)){
$commentaar=htmlspecialchars($commentaar);
$commentaar=stripslashes($commentaar);
echo $commentaar; }
?>
</textarea>
<br><br>
<input type="submit" name="versturen" value="Versturen">
</form>
<hr><br>
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
if (isset($titel) && isset($naam) && $naam !="") {
if ($titel=="m") {
echo "Goedendag Mijnheer ";
}
else {
echo "Goedendag Mevrouw ";
}
echo "<strong>" . $naam . "</strong>, leuk dat u er bent!\n<br><hr>";
echo "<strong>Uw commentaar was: </strong><br><br>\n";
$commentaar=nl2br($commentaar);
$commentaar=strtr($commentaar,"$","€");
echo "<strong>$commentaar</strong>;
}
else {
if (isset ($versturen)) {
echo 'Gelieve alle velden in te vullen a.u.b.\n<br>';
}
}
?>
if (isset($titel) && isset($naam) && $naam !="") {
if ($titel=="m") {
echo "Goedendag Mijnheer ";
}
else {
echo "Goedendag Mevrouw ";
}
echo "<strong>" . $naam . "</strong>, leuk dat u er bent!\n<br><hr>";
echo "<strong>Uw commentaar was: </strong><br><br>\n";
$commentaar=nl2br($commentaar);
$commentaar=strtr($commentaar,"$","€");
echo "<strong>$commentaar</strong>;
}
else {
if (isset ($versturen)) {
echo 'Gelieve alle velden in te vullen a.u.b.\n<br>';
}
}
?>
Nu geeft hij die foutmelding aan op de allerlaatste regel. De "?>" regel.
Wat is hier fout aan?
weet iemand dat?
Misschien even kijken of je geen } vergeten bent ofzo
echo "<strong>$commentaar</strong>;
Ben je een " vergeten.
Hij doet het (Y)
Dank je wel