ccrevcypsys Posted October 11, 2007 Share Posted October 11, 2007 I am working on a form right now that when you click a radio button at the top it will select a few of the other radio buttons. Here is the code that i have. I just dont know how to do this. I have never done this type of form before. here is the button that if selected should select the others <INPUT NAME="StandardNewEmployeeBackgroundCheck" TYPE="checkbox" ID="StandardNewEmployeeBackgroundCheck" VALUE="1" onClick="FormChangeNSST()" onSelect="" /> Standard New Employee Background Check<br> and heres the ones that need to be selected <DIV CLASS="REQUESTEDind"> <INPUT NAME="NationwideSSTraceAndCountyCheck" TYPE="checkbox" ID="NationwideSSTraceAndCountyCheck" VALUE="1" onClick="FormChangeNSST()"<?php if ($_POST['NationwideSSTraceAndCountyCheck']) { echo " CHECKED"; } ?> /> Nationwide Social Security Trace and County Criminal Check</DIV> <DIV CLASS="REQUESTEDind"> <INPUT NAME="SocSecTrace" TYPE="checkbox" ID="SocSecTrace" VALUE="1"<?php if ($_POST['SocSecTrace']) { echo " CHECKED"; } ?> /> Social Security Trace</DIV> <DIV CLASS="REQUESTEDind"> <INPUT NAME="NationCriminalRecordsDB" TYPE="checkbox" ID="NationCriminalRecordsDB" VALUE="1"<?php if ($_POST['NationCriminalRecordsDB']) { echo " CHECKED"; } ?> /> US Criminal Records Data Base</DIV> <DIV CLASS="REQUESTEDind"> <INPUT NAME="FederalConvictionHistory" TYPE="checkbox" ID="FederalConvictionHistory" VALUE="1"<?php if ($_POST['FederalConvictionHistory']) { echo " CHECKED"; } ?> /> Federal Conviction History<BR> </DIV> Please help Link to comment https://forums.phpfreaks.com/topic/72845-solved-help-with-form-selection-n00b-question/ Share on other sites More sharing options...
kenrbnsn Posted October 11, 2007 Share Posted October 11, 2007 What you're looking to do can not be done in PHP. It can be done in Javascript. Ken Link to comment https://forums.phpfreaks.com/topic/72845-solved-help-with-form-selection-n00b-question/#findComment-367349 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.