0

如果这是一个愚蠢的问题,我很抱歉,但我是自学的-.-

场景我有一个发票 php、js 页面,允许手动输入行项目。我想更改由我已归档项目的 mysql 数据库填充的下拉列表的文本区域。我能够在下拉列表中拉起 1 行,但不是结果数组。

我正在修改现有代码,因此如果您有任何建议,我们将不胜感激。感谢您的帮助。

PHP 代码 mysql 查询将结果存储到 $description 变量。

$customerquery="SELECT description FROM es_items";
$customerresults=mysql_query($customerquery) or die ("Query to get data from customer table failed: ".mysql_error());

while ($customerrow=mysql_fetch_array($customerresults)) {
    $description=$customerrow[description];
}

PHP js调用添加一行

<tr id="hiderow">
    <td colspan="5"><a id="addrow" href="javascript:;" title="Add a row">Add a row</a></td>
</tr>

JS

$("#addrow").click(function(){
    $(".item-row:last").after('<tr class="item-row"><td class="item-name"><div class="delete-wpr"><textarea>Item Name</textarea><a class="delete" href="javascript:;" title="Remove row">X</a></div></td><td class="description"><select name="description"><option>' + description +'</option></select></td><td><textarea class="cost">$0</textarea></td><td><textarea class="qty">0</textarea></td><td><span class="price">$0</span></td></tr>');
if ($(".delete").length > 0) $(".delete").show();
bind();

您可以在http://estimate.roedermgt.com查看它在做什么

4

2 回答 2

0

似乎您没有在 php 中正确地遍历列表,它应该是

$description[] = $customerrow[description];
于 2013-07-12T14:11:40.483 回答
0

您正在分配 while 循环中每一行的值,而不是建立一个集合。结果,只返回一行。

尝试制作$description一个数组:

while ($customerrow = mysql_fetch_array($customerresults)) {
    $description[] = $customerrow[description];
}
于 2013-07-12T14:10:20.337 回答