Can anyone help, basically I've got a sign up page with alot of validation required.
As I go through the validation I am returning errors back to the screen to allow the user to edit the form.
Once the validation is complete, I then want to redirect the user to a confirmation page.
I've been using meta http-equiv="refresh" to redirect, however obviously this is posting the headers prior to the error checking has been done.
I guess I could use header(Location:blah blah) but I don't think the way the code is structured it would allow this.
Anyone got any ideas of how to over come this?