Hi!
I have questionary page where people must select some values but it doesn't remember the selected values when you go back to edit.
I select and save but it goes back to
I am new in PHP ,sorry
Code:
<tr>
<td width="100" align="right" class="key"><?php echo JText::_( 'Staatus' ); ?>: </label></td>
<td><select name="proforma" id="proforma">
<?php
$Noproforma = " ";
$proforma = " ";
?>
<option> </option>
<option <?php echo $proforma;?> value="NoProforma"><?php echo JText::_('NoProforma');?></option>
<option <?php echo $proforma;?> value="Proforma"><?php echo JText::_('Proforma');?></option>
</select></td>
</tr>