I have pages like
index.php?key=toplist&list=magic
So, if om on this page, for example, I want the Magic option to be marked as selected in the selection menu
<select name="skill" onchange="window.location.href=this.form.skill.options[this.form.skill.selectedIndex].value"> <option value="index.php?<?=QUERY_STRING?>&list=experience">Experience </option> <option value="index.php?<?=QUERY_STRING?>&list=magic">Magic</option> <option value="index.php?<?=QUERY_STRING?>&list=shielding">Shielding</option> <option value="index.php?<?=QUERY_STRING?>&list=distance">Distance</option> <option value="index.php?<?=QUERY_STRING?>&list=fishing">Fishing</option> </select>
thanks
source share