The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
|
![]() |
How to integrate server-side validation with the Form Tools form? - Printable Version +- Form Tools (https://forums.formtools.org) +-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1) +--- Forum: API (https://forums.formtools.org/forumdisplay.php?fid=17) +--- Thread: How to integrate server-side validation with the Form Tools form? (/showthread.php?tid=215) |
How to integrate server-side validation with the Form Tools form? - rubycat - Jul 13th, 2009 There are three chunks of PHP-- 1) The PHP to process the form through Form Tools API 2) The PHP to perform server-side validation with your PHP Validation - v2.3.1 code 3) Another chunk of PHP inserted in the form to display the errors (?) I don't understand how to integrate these PHP snippets and have tried everything I can think of to get this to work and am having no success. And without server-side validation, everything fails miserably if the enduser does not have javascript enabled which means this was all for naught. :-( Also, no success messages should be output if validation is successful--it should just carry on to the thank you page and do what it's supposed to do so I don't know how to extract that stuff from the third chunk. I'd really like to be able to use Form Tools--you did such a fantastic job with this and I want to be able to use it!! CHUNK #1: FORM TOOLS PHP API CODE AT TOP OF FORM Code: <?php CHUNK #2: PHP FOR FORM VALIDATION Code: <?php __________________________________________________________________________ CHUNK #3: MORE PHP FOR INCLUSION IN THE FORM AS A RESULT OF VALIDATION.PHP (?) Code: <?php RE: How to integrate server-side validation with the Form Tools form? - Ben - Jul 18th, 2009 Hey Ruby! Don't worry - we can get this sorted. Basically it's just a matter of juggling the PHP logic to get it straight. Based on what you've posted, here's how the code would look. By the way, don't worry about the 3rd chunk: the error message display - that will remain where it is, unaffected. PHP Code: <?php I trimmed a lot of the unnecessary logic, so hopefully this will make it a little clearer. Things like including the validation.php file is already taken care of for us when we included the api.php, and all the manual stuff of storing the data in the $fields var is already done by ft_api_init_form_page(). Nice! Hmm... but I must say, this REALLY makes me realize that the server-side validation tutorial is needed... okay, another project for this weekend. :-) Let me know if the above doesn't work for you, or if you run into any other problems! - Ben RE: How to integrate server-side validation with the Form Tools form? - sergiozambrano - Aug 14th, 2009 Ben: Using your code (I've deleted captcha to isolate the error) the invalid form retrieves no data. print_r($fields) shows form and submission id ONLY after the form is reloaded with the error, as any new form. Although, all the form data is printed when a valid form with wrong captcha is sent… but ONLY leaving the page and browsing back to it. (captcha not fixed) Also, you should mention that you need the word "submit" inside the if isset($_POST… line matching your submit button "name" attribute. Is there any chance it's not working because the form is inside an iframe? (it loads the thank you page fine inside the same iframe) [FIXED] Answer from Ben Keen - sergiozambrano - Aug 18th, 2009 Here's the solution right from Ben Keen http://forums.formtools.org/showthread.php?tid=243&pid=1009#pid1009 |