hey guys
how you doin
i want to insert multiple selection into mysql like this
<select name="time" multiple="multiple">
<option></option>
</select>
i tried this
$arr = $_POST['position'];
foreach($arr as $position){
$time=$position;
}
.
.
$insert = mysql_query("insert into $table values ('NULL', '".$_POST['time']."'
but it's not work it insert into mysql just one value
i want when the user ctl+click to choose more than one
to insert all selected values into mysql
so please help me about it