Thanks for your reply.
What I mean is that the form was sent to a verification script, which would check for errors.
At the end of this script, it would redirect either back to the form or to the processing script, for the data to be added to the database etc.
<% // (asp)
// Check for errors, then
if (errors > 0) {
//redirect back to form.asp?msg=Error%20Message
} else {
//redirect to processing.asp
}
%>
As I said, I'm sure it was response.redirect(url) that I used.
Is there anything similar in PHP?
Thanks,
Mei