Hi,
I am still fairly new to php and I must be missing something obvious !
I have a form that uses several drop-down selections like these:
<td class = "cl_props_add_td" ><select name="Locn">
<option value="a">Fethiye Calis</option>
<option value="b">Fethiye</option>
<option value="c">Ovacik/Hisar</option>
<option value="d">Kas</option>
<option value="e">Kalkan</option>
<option value="f">Gocek</option>
</select></td>
what do I use to post include these in the POST ?
I guess I need an <input type ???
but I am not sure which one or how to do it.
Same question applies to the <textarea> command - I have one of these in the form :
<td class = "cl_props_add_td" >Description 2: </td>
<td colspan = "5" ><textarea name="desc2" value="Long Description (1000 char)"
rows = 4 cols = 43 > </textarea></td>
Again - what do I use to include it in the $_POST - or is it already included somehow ?
How do I retrieve them ?
Thanks for any help,