How to reset all fields when page reload/refreh?

Hi all,
how to reset all the fields in a page, when i do explicitly reload or refresh?

Normally, select boxes are not reset after reloading the page, why?

How to reset select boxes when an user reload/refresh the current page using browser reload/refresh button?

Thanking you…

Try $_POST = array() or set the specific fields - (not tested)

Thank you for your reply…

Basically, i want to reset select box with ‘select one’ when i reload/refresh the page…
but it is not reset…

why?

Try this:





<form action="">
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab" >Saab</option>
<option value="mercedes">Mercedes</option>
<option value="bmw" selected='selected'>BMW</option>
<option value="honda">Honda</option>
<opelect>
</form>