theduigirls
New Member
If I have a select form, for example:\[code\] <form action='?' method='get' name='form_filter' class="sortoptions" > <select name="sort" > <option value="http://stackoverflow.com/questions/15467481/None">None</option> <option value="http://stackoverflow.com/questions/15467481/PriceLow">Price (Low to High)</option> <option value="http://stackoverflow.com/questions/15467481/PriceHigh">Price (High to Low)</option> <option value="http://stackoverflow.com/questions/15467481/NameAZ">Name (A-Z)</option> <option value="http://stackoverflow.com/questions/15467481/NameZA">Name (Z-A)</option> </select>\[/code\]I'm submitting using the GET method but need a way of when its been submitted and on the results page the option which was selected to be displayed.So say if 'Price (High to Low)' is selected it will then be displayed in the select box on the results page after its been submittedAny ideas?Thanks!