geko21 Posted May 6, 2011 Share Posted May 6, 2011 Hi guys, basically my problem is I have a jquery pop out window that holds a login form using the "require_once" function but when I enter my login details and send them, if there is another another form on the page e.g contact form it will send that form aswell so it will come up for the errors for the register form because they are empty. can anyone tell me how to stop this from happening? Quote Link to comment https://forums.phpfreaks.com/topic/235739-stop-page-forms-sending/ Share on other sites More sharing options...
fugix Posted May 6, 2011 Share Posted May 6, 2011 well that will happen because the parser will still look for those indices even though the form isnt sent, you can add an @ sybol before your $POST[] vars to eliminate the showing of this eg Quote Link to comment https://forums.phpfreaks.com/topic/235739-stop-page-forms-sending/#findComment-1211722 Share on other sites More sharing options...
xyph Posted May 6, 2011 Share Posted May 6, 2011 Or turn off the reporting of error_notices completely http://www.php.net/manual/en/function.error-reporting.php The safest, most compliant solution though is to use the isset() function before calling any user-created variables. As always, sanitize any and all user input. Quote Link to comment https://forums.phpfreaks.com/topic/235739-stop-page-forms-sending/#findComment-1211729 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.