Hi all!
I have this form, that has an increment option at some time, and I need to retaint he value of one <select> that is set at the begining. I am using this code:
<select name="value">
<? if (isset($value)) {
print("<option selected>". $value ."</option>");
} // END if (isset($odd_type))
?>
<option></option>
<option>value#1</option>
<option>value#2</option>
<option>value#3</option>
</select>
but it only retains the value one time, after that it sets itself to Array value.
I am trying to figure out why, but it's beyond my current abilities.
As a second question, is there any place where php errors are explained?
Thank you.
Sourian