Guest_imported
New member
- Jan 1, 1970
- 0
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Reactie toevoegen</title>
</head>
<body>
<center>Klik <a href="reacties.html">hier</a> om het gastenboek te bekijken.</center>
<?php
$uitvoerbestand = "reacties.html";
$bestandsindex = fopen($uitvoerbestand,"a"
;
fwrite($bestandsindex, "Een reactie van : $naam ($email): <br>"
;
fwrite($bestandsindex, "$reactie<br><hr>"
;
fclose($bestandsindex);
?>
</body>
</html>
What do I have to do to get this page redirect to reacties.html ? If I put a location header in this file hegives the error that the page is already been used
<html>
<head>
<title>Reactie toevoegen</title>
</head>
<body>
<center>Klik <a href="reacties.html">hier</a> om het gastenboek te bekijken.</center>
<?php
$uitvoerbestand = "reacties.html";
$bestandsindex = fopen($uitvoerbestand,"a"
fwrite($bestandsindex, "Een reactie van : $naam ($email): <br>"
fwrite($bestandsindex, "$reactie<br><hr>"
fclose($bestandsindex);
?>
</body>
</html>
What do I have to do to get this page redirect to reacties.html ? If I put a location header in this file hegives the error that the page is already been used