01.
<select multiple=
"multiple"
class
=
"form-control"
name=
"coml[]"
>
02.
<?php
03.
$strSQL
=
"SELECT * FROM comlanguage ORDER BY cl_id ASC"
;
04.
$objQuery
= mysql_query(
$strSQL
);
05.
while
(
$objResuut
= mysql_fetch_array(
$objQuery
))
06.
{
07.
?>
08.
<option value=
"<?php echo $objResuut["
cl_id
"];?>"
><?php
echo
$objResuut
[
"cl_name"
];?></option>
09.
<?php
10.
}
11.
?>
12.
</select>