blastbum Posted January 15, 2007 Share Posted January 15, 2007 Hi,I'm a php newbie, so please be nice. :)For some reason, my form validation isn't working. To see what I mean, go to [url=http://www.ds-d.com/message.php]http://www.ds-d.com/message.php[/url] You should only be able to progress to the "Statement" page if the "I Agree" checkbox has been checked. Currently, you can go to the "statement.php" page without the "I Agree" checkbox being checked. I'd love to know why it's not working.I have attached the relevant files.If you could supply me the correct code that would make the validation work, I would be very grateful.Thank you.Dan Secomb[attachment deleted by admin] Link to comment https://forums.phpfreaks.com/topic/34226-mailform-question-how-do-i-get-form-validation-to-work-on-a-checkbox/ Share on other sites More sharing options...
kobmat Posted January 15, 2007 Share Posted January 15, 2007 try changing the javascript to<script language="JavaScript"><!--function checkCheckBox(f){if (f.agree.checked == false ){alert('You must check the box to continue to view the \'Statement\' page.');return false;}elsereturn true;}// End --></script> Link to comment https://forums.phpfreaks.com/topic/34226-mailform-question-how-do-i-get-form-validation-to-work-on-a-checkbox/#findComment-161021 Share on other sites More sharing options...
blastbum Posted January 15, 2007 Author Share Posted January 15, 2007 AWESOME!!! You got it!!! Thank you. :) Link to comment https://forums.phpfreaks.com/topic/34226-mailform-question-how-do-i-get-form-validation-to-work-on-a-checkbox/#findComment-161023 Share on other sites More sharing options...
blastbum Posted January 15, 2007 Author Share Posted January 15, 2007 Hi Kobmat,I was just wondering whether you knew how to get the users IP address to appear on the emails "From" field. Currently, it's this email address "[email protected]" that's appearing in the "From" field.I think this line may have something to do with it:$ip = $_SERVER['REMOTE_ADDR'];If you could let me know how to do that, I would be most grateful.Thank you.Dan Secomb Link to comment https://forums.phpfreaks.com/topic/34226-mailform-question-how-do-i-get-form-validation-to-work-on-a-checkbox/#findComment-161038 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.