Julian Posted July 12, 2006 Share Posted July 12, 2006 HiI have this code:if($sti->checkPost() === true){ echo "<h1>Thank you, they mached!</h1>";//This is the line I want ot change}elseif($sti->checkPost() === false){ echo "<h1>Wrong input! Try again!</h1>";}I'm checking for match the CAPTCHA value first. If it's TRUE I want to process the POST values on another file (I keep the form separated from the process).Does anybody know the code to process the form at another file when it's true?If I put header (Location.... I get an error: headers already send by...Thanks guys, always good answers here. Link to comment https://forums.phpfreaks.com/topic/14416-validate-fields-and-then-submit-form-for-processing/ Share on other sites More sharing options...
hussain Posted July 12, 2006 Share Posted July 12, 2006 <?if($sti->checkPost() === true){ echo "<h1>Thank you, they mached!</h1>";//This is the line I want ot change?><script>document.form.submit();</script><?}elseif($sti->checkPost() === false){ echo "<h1>Wrong input! Try again!</h1>";}?> Link to comment https://forums.phpfreaks.com/topic/14416-validate-fields-and-then-submit-form-for-processing/#findComment-57010 Share on other sites More sharing options...
Julian Posted July 12, 2006 Author Share Posted July 12, 2006 Thanks for the help!I have a submit button that triggers the form: <input type=submit>.I think this makes your solution not working in my case....Attaching the files to see if anybody can help me.Thanks[attachment deleted by admin] Link to comment https://forums.phpfreaks.com/topic/14416-validate-fields-and-then-submit-form-for-processing/#findComment-57019 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.