robmo Posted August 24, 2010 Share Posted August 24, 2010 Hi, I have a separate form created using Dreamweaver that calls a separate php script when the Submit button is clicked. Currently I am able display form validation messages in a new html page. If the user leaves fields blank, I would like the messages to appear on the form itself instead of in a new page. How do you make the messages from the php form validation code display into the calling html form? I know I could just do this with Dreamweaver but I would like to learn to do this using php. It might be easier to embed the code within the html page but I was thinking that using the separate script would be more secure. My form can be found here. Validation is working but opens a new page: http://www.tallfirshoa.com/adform.htm Thanks! Rob Quote Link to comment https://forums.phpfreaks.com/topic/211652-displaying-error-messages-in-form-when-php-is-separate-file/ Share on other sites More sharing options...
nethnet Posted August 24, 2010 Share Posted August 24, 2010 Javascript would be your friend in this case, if the form validation doesn't require checking against a database. If it does, look into using AJAX to execute your PHP script that checks for errors so the user doesn't actually leave the form page. Theo Quote Link to comment https://forums.phpfreaks.com/topic/211652-displaying-error-messages-in-form-when-php-is-separate-file/#findComment-1103358 Share on other sites More sharing options...
robmo Posted August 24, 2010 Author Share Posted August 24, 2010 I don't need a database in this example. The script only needs to check for blank fields and let the user know that they need to be filled out. If everything is filled out, then php should email the results of the form to me and one other person. I want to include captcha to so it helps to prevent spam. Maybe my php script doesn't need to do as much as I am thinking. Quote Link to comment https://forums.phpfreaks.com/topic/211652-displaying-error-messages-in-form-when-php-is-separate-file/#findComment-1103367 Share on other sites More sharing options...
nethnet Posted August 24, 2010 Share Posted August 24, 2010 Use Javascript then. Use an onSubmit() event handler in your form tag to run an error checking function in Javascript that checks to make sure the form doesn't contain any blank fields. If it does, throw up an alert() or something similar to notify the user to correct their mistakes. If not, proceed to submit the form. Since this is a matter of not moving to another page, you will need to use client-side scripting to accomplish this, not server-side. If you are gung-ho about using PHP to error check, you will need to use AJAX. Quote Link to comment https://forums.phpfreaks.com/topic/211652-displaying-error-messages-in-form-when-php-is-separate-file/#findComment-1103373 Share on other sites More sharing options...
robmo Posted August 24, 2010 Author Share Posted August 24, 2010 Mainly I just want to follow best practice out in the industry. It sounds like javascript is how it would be done. I do know that if I just use Dreamweaver to set the conditions, it will write the javascript for me. This sounds like the easiest way to go. I'm not necessarily looking for easy, just the best and most popular solution. I don't really want to create a big mess that is hard to understand and maintain. Thanks a lot for your help! I think I know what I need to do now... Quote Link to comment https://forums.phpfreaks.com/topic/211652-displaying-error-messages-in-form-when-php-is-separate-file/#findComment-1103374 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.