Jump to content

[SOLVED] Help with form selection (n00b question)


ccrevcypsys

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.