Hi all,
I am trying to print a drop down list, but I am getting a: "Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in..."
Here is the code that is causing the problem:
<tr><td>Please select rate type:</td><td><select size=\"1\" name=\"test1\"
<option value=\"Approximate Charge\" <?php if (isset($_POST['test1']) and $_POST['test1'] == \"Approximate Charge\") echo \"selected\"?>>Approximate Charge</option>
Any ideas?
Thanks,
G