A
Anonymous
Guest
Howzit guys.
Just want to know.
is it possible to do a multiple select in php.
I have seen it done in asp
but not yet in php
If i select say 1 and 3
only 3 will show.
how can i see 1 and 3 ?
Shot guys
this looks so simple .... yet :shock:
Just want to know.
is it possible to do a multiple select in php.
I have seen it done in asp
but not yet in php
Code:
<html>
<title>Multi Select Dropdown Box</title>
<body>
<form method="POST" name="frm">
<select size="5" name="sel" multiple>
<option value='1'>1</option>
<option value='2'>2</option>
<option value='3'>3</option>
<option value='4'>4</option>
<option value='5'>5</option>
</select>
<input type="submit" name="sub">
</form>
</body>
</html>
If i select say 1 and 3
only 3 will show.
how can i see 1 and 3 ?
Shot guys
this looks so simple .... yet :shock: