Hello,
I have a multiple select menu created with following code:
<form action="<?=$_SERVER['PHP_SELF']?>" method="post">
<select name="test[]" multiple="multiple">
<option value="one">one</option>
<option value="two">two</option>
<option value="three">three</option>
<option value="four">four</option>
<option value="five">five</option>
</select>
<input type="submit" value="Send" />
</form>
and I want to put hyperlinks with multiple selections too, so that if someone want to view options up same time as selecting them, he could!
any idea?