Hi here's my code:
<?php
if ($submit) {
// I call a function here...
} else {
// print the following form
?>
<html>
<body>
<form action="<? echo $PHP_SELF ?>" method="post">
blablabla...
</form>
</body>
</html>
Now when I submit this form everything works fine.
But if I hit back button I have no access to the form anylonger.
Instead, I get the result page twice when clicked on submit and
it skips the form page.
How can I get the form page back when I hit back button with
its previous values in the fields?