1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php $dir = "."; include_once($dir."/_common.php");
$option_list = ""; $sql = "select * from product_category2 a where 1=1 order by code"; $result = mysql_query($sql,$connect_e1000y);
while($cus_info=mysql_fetch_array($result)){ $option_list .= "<option value='{$cus_info['code']}'>{$cus_info['name']}</option>"; }
echo $option_list;
?>
|