Zergman Posted October 24, 2008 Share Posted October 24, 2008 Not sure if this is the right area, my apologies if it isn't. On my form, I have a couple radio buttons. I don't have them preselected so I need to validate them when the form is submitted. <form action="<?php echo $editFormAction; ?>" method="post" name="myform" id="myform" onsubmit="MM_validateForm('Agent_TID','','RisNum');return document.MM_returnValue"> AB<input name="radio" type="radio" id="abradio" value="AB" /> BC<input type="radio" name="radio" id="bcradio" value="BC" /> I found a bunch of javascript that would do it but would rather not have to use java if not necessary. Any help would be appreciated. Quote Link to comment https://forums.phpfreaks.com/topic/129973-form-validation/ Share on other sites More sharing options...
alexweber15 Posted October 24, 2008 Share Posted October 24, 2008 quick an to the point reply: try pointing the form action to a file with nothing but this: die(var_dump($_POST)); and compare radio button values when checked and when not checked. and here's from my compromised memory: since they are in the same "group" (they have the same name property) the POST value for that particular name will = the value of the selected radio button, or "" if none are selected. ps - i find it kinda odd that you're ok with using Dreamweaver pre-made JS to achieve rollover images but dont wanna use JS to validate the form?? ideally you should validate both client AND server side (if client has JS it'll spare you the extra trip back and forth) -Alex Quote Link to comment https://forums.phpfreaks.com/topic/129973-form-validation/#findComment-673818 Share on other sites More sharing options...
Zergman Posted October 24, 2008 Author Share Posted October 24, 2008 Thanks for the quick reply. Don't get me wrong, I don't mind using javascript to validate the radio buttons if necessary but what Dreamweaver does behind the scenes is up to it hehe. P.S. I still use Dreamweaver to help me since i'm all self taught, but passed a mile stone yesterday when I went notepad++ 100% since I forgot my laptop at home. Learned a lot! Quote Link to comment https://forums.phpfreaks.com/topic/129973-form-validation/#findComment-673825 Share on other sites More sharing options...
Zergman Posted October 24, 2008 Author Share Posted October 24, 2008 Can someone point me to a simple, easy to implement script? Been hitting up google, but there are SO many of them, some don't sound too good. Quote Link to comment https://forums.phpfreaks.com/topic/129973-form-validation/#findComment-673852 Share on other sites More sharing options...
Zergman Posted October 24, 2008 Author Share Posted October 24, 2008 nevermind, found one that works good. http://www.felgall.com/javatip2.htm Just need a tid bit of advise though. I just need one other field validated and I don't know how to modify this code to validate it. Damn my newbish brain. Here's the field I need validated other than the radio buttons. <input name="Agent_TID" type="text" class="inputbox" id="Agent_TID" value="" size="15" maxlength="6" /> Here's the script function valbutton(thisform) { // place any other field validations that you require here // validate myradiobuttons myOption = -1; for (i=thisform.myradiobutton.length-1; i > -1; i--) { if (thisform.myradiobutton[i].checked) { myOption = i; i = -1; } } if (myOption == -1) { alert("You must select a radio button"); return false; } alert("You selected button number " + myOption + " which has a value of " + thisform.myradiobutton[myOption].value); // place any other field validations that you require here thisform.submit(); // this line submits the form after validation } Quote Link to comment https://forums.phpfreaks.com/topic/129973-form-validation/#findComment-673860 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.