hi, is used to be works fine with text field, but i changed that line to list/menu but is getting error message.
It has not thing to do with $POST['b_month'] because i have not change or touch anything in $POST['b_month'] line when it was works fine with text field before i changed to list/menu.
i noticed that i made mistake some line and i fix and still not working right please see code
<tr valign="baseline">
<td nowrap align="right"><span class="style13"><strong>City:</strong></span></td>
<td><input type="text" name="city" value="<?php echo $row_Member_Recorder['city']; ?>" size="32"></td>
</tr>
[CODE][B]<tr valign="baseline">
<td nowrap align="right"><span class="style13"><strong>Month </strong></span></td>
<td><lable type="text" value="<?php echo $row_Member_Recorder['b_month']; ?>" size="32">
<select id="month">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
</select>
</td>
</tr>[/B][/CODE]
please help thanks.
AM