Hi,
i am trying to retrieve a value from a combo box....i am using this code
<select name="cards">
<?php
echo("
<option value=\"$cardtype\">Visa/Delta/Electron</option>\n
<option value=\"$cardtype\">Mastercard</option>\n
<option value=\"$cardtype\">EuroCard</option>\n
<option value=\"$cardtype\">American Express</option>\n
<option value=\"$cardtype\">Switch/Solo</option>\n");
?>
</select><hr/><br/>
this data is posting to another page using...
$cardtype = $HTTP_POST_VARS['CardType'];
This returns an empty value even though i am selecting a value in the combo.....can anbody help..........