Posted by sathyashrayan on 05/10/07 11:37
Dear group,
I have a task where I have to fetch datas from mysql and display it
in the multiple select list box. I have fetched the datas and it is
getting diplayed correctly in the multiple select box. I have used
some thing like this.
print "<select MULTIPLE SIZE='6' name='db_test[]'>";
while($row = mysql_fetch_object($handle))
{
if($num > 0) /*num is number of rows*/
{
print "<option value='$row->db_name'name='$row->db_name'>".$row
>db_name."</option>";
}
}
print "</select>";
But I want to insert in mysql the selected values.That too the
multiselect in mysql. Do i have to use serilize function? Any link or
any implimentation snipits is very help full. Any key word to search
the google..? Thanks for any help.
Navigation:
[Reply to this message]
|