S1nglejack - your problem and mine are different, i think my issue is the same one the thread owner had.
In my project, I have several forms. On submission of the form, I want some database processing done, and then the user to be redirected back to a main interface page.
I have used header("Location") calls to do the redirecting, and to get around the headers already sent, I have all the forms post to a seperate script, that uses a case statement to do each forms processing of the $_POST vars into the database, and then sets the $redirect value.
This has been working fine, and the scripts do exactly what they should, but I have not implemented any validation on the form data yet, partly put off because its tedious, and partly because I could not think of a way to abstract the validation efficiently enough without it getting beyond my abilities - form validation is the reason I discovered quickforms in the first place. I am now trying to redo the existing forms as quick forms so I can take advantage of the rules & filters, but the redirect problem is annoying.
I can do the processing & database functions in the same script as the form, but I still eventually want to redirect the user to another page, which is hard if headers have already been sent, and I dont want to use javascript fake-submits of invisible forms etc. I dont like relying on javascript.
Hope that wasn't too convoluted