Below is a snip-it of the database column that is storing the selected information:
Column: quotationinsurance
Type: VARCHAR
Lenght/Values: 20
Default: None
Below is a snip-it of the radio buttons from my php form - formOneEdit.php
Code: Select all
<td width="24"><span class="med">
<input type="radio" name="quotationinsurance" value="<?php
if($form->value("quotation") == ""){
echo $session->userinfo['quotation'];
echo 'quotation';
}else{
echo $form->value("quotation");
}
?>" class="btn" onMouseOver="hov(this,'btn btnhov')" onMouseOut="hov(this,'btn')" />
</span></td>
<td width="54"><span class="small">Insurance</span></td>
<td width="271"><span class="med">
<input type="radio" name="quotationinsurance" value="<?php
if($form->value("insurance") == ""){
echo $session->userinfo['insurance'];
echo 'insurance';
}else{
echo $form->value("insurance");
}
?>" class="btn" onMouseOver="hov(this,'btn btnhov')" onMouseOut="hov(this,'btn')" />
</span></td>
If you need check out the form, I can set up a guest username and password so you can check it out if need be....
Any help would be appreciated