suppose i have a select HTML element on the page. how can i select the option after passing a query string. such as computer.php?type=super2 it should select the super2 option in the select
<select>
<option value="Super">Super</option>
<option value="Super2">Super2</option>
<option value="Super3">Super3</option>
<option value="Super4">Super4</option>
</select>
can any one help. note: i need a static solution. i am not using any database. althou i am using PHP. any solution based on jquery or PHP ?