0
hii everyone, 我想顯示下拉框調用另一個下拉菜單。當選擇一個時,將從數據庫值中調用另一個下拉菜單。我正在使用此代碼:通過ajax調用下拉菜單
echo $fginfo=" <td width='150' class='label'>Items</td>
<td class='content' colspan='3'>
<select name='item_code' id='item_code' onchange=\'checkitemcode();\'>
<option value='0'>Select Item</option>".
$sql12=mysql_query('select * from item_master_raw where status=1 order by item_name asc ');
while($row12 = mysql_fetch_array($sql12))
{ "<option value='$row12[item_code_rw]'>$row12[item_name]</option>".}"
</select>
</td>";
但是數據庫中的值未被看到。 PLZ幫助我。 謝謝。
謝謝,非常..... – user435704 2010-10-02 12:18:23