OK I'm pretty sure this is an easy one. I've successfully made my list and checkbox fields sticky using selected=selected and checkbox=checkbox etc etc.
I now have a very simple text field.
What is going wrong is that the entire string within the value="" shows up as the initial value in the field- so that when you look at the form this is what you see in the field.
How do I make the field sticky without any initial value show up?
many thanks for the help.
<td align="left"><label for="prop_pricemin"></label>
<input name="prop_pricemin" type="text" id="prop_pricemin" value="<?php if(isset($_POST['prop_pricemin'])) echo $_POST['prop_pricmin'];?>" />
</td>