Hi,
One more question guys and girls!
If I have a HTML form sending information to a php where I have this controlllines:
<?php
if ($lan==100){
header ("Location: form1.php?error=100");
exit;
} else {
header ("Location: form2.php?lan=$lan&ort=$ort");
exit;
}
?>
I you see, if $lan=100 I go back to my HTML form, but the problem is that I loose all information that has already been written in the form, since I load it again. The user now have to fill in all the things in the form again.
Is there another way to do it? I guess that it is ipossible to send the data back to the form?
/Martin