0
我在學習如何編程,這是我的第一個項目。我知道我應該閱讀教程,但我有點卡住它。真的想要自己完成它,但它令人沮喪......至少有人能指引我朝着正確的方向發展嗎? 那麼,我如何根據下拉列表選擇將數據回顯到表單元格? 任何幫助非常感謝。 代碼到目前爲止: http://jsfiddle.net/uFEPn/3/如何從下拉列表選擇中檢索數據到表中?
<select>
<option>-- Select lot --</option>
<?php
mysql_connect('localhost','root','');
mysql_select_db('pl_base');
$query="SELECT DISTINCT lot_number FROM pl_table";
$result=mysql_query($query);
while(list($lot_number)=mysql_fetch_row($result)) {
echo "<option value=\"".$lot_number."\">".$lot_number."</option>";
}
?>
</select>
</br>
<table border="1" id="table">
<tr>
<th width=80 height=30>Lot<br/>number</th>
<th width=110 height=30>Description</th>
<th width=90 height=30>Pallet<br/>number</th>
<th width=60 height=30>Net</th>
<th width=60 height=30>Gross</th>
</tr>
<tr>
<td>#</td>
<td rowspan="5">echo results here</td>
<td><b>Total</b></td>
<td>#</td>
<td>#</td>
</tr>
<td> # </td>
<td colspan="3">#</td>
</tr>
<tr>
<th>&</th>
<th>&</th>
<th>&</th>
<th>&</th>
</tr>
</table>
表中數據的基礎上:
+--------------------------+-------------------------+---------+-------+
| id | lot_number | descr | pallet_number | net | gross |
+--------------------------+-------------------------+---------+-------+
| 1 | 111 | black | 1 | 800 | 900 |
| 2 | 111 | black | 2 | 801 | 901 |
| 3 | 111 | black | 3 | 802 | 902 |
| 4 | 222 | white | 1 | 800 | 900 |
| 5 | 222 | white | 2 | 801 | 901 |
| 6 | 222 | white | 3 | 802 | 902 |
+--------------------------+-------------------------+---------+-------+
經過一番調整後,它的工作原理!非常感謝! – user2199877