Redirecting but also... -[RESOLVED]-
I have a script which a form submits to then that script checks the contents and does the neccasary actions. But if the form wasn't fully complete or there was a problem i'm using
PHP Code:
header("Location: /book1.php");
to send the user back to the form. The problem is I also want to send a chunk of text with it (via POST method) is there anything I can set in the headers that will allow me to do that?
If i can't then I guess I'll have to limit he amount of messages possible and have some kind of code just sending a number related to what message to display :(.