简而言之,我循环并尝试INSERT所有行,但它只插入最后一行它循环的次数。因此,对于两个循环,它将循环两次,并插入最后一行两次(不插入第一行)。
我将此作为行/项目计数器使用:
$countRecords;
这是一个基本计数器,告诉我上一张发票中包含多少行。这有效。在我的例子中,它显示" 2"因为前一张发票中有两个项目(行)。
我在循环之外使用MySQL的第一部分:
// the MySQL statement out of the loop
$stmt="INSERT INTO o70vm_invoices_items
(`id`, `invoice_id`, `name`, `desc`, `value`, `amount`, `discount`, `ordering` ) VALUES ";
我然后运行循环:
// loop through the rows
for($rowCounter = 0; $rowCounter < $countRecords; $rowCounter++)
{
// assign variables based on each loop iteration
$invoiceID = htmlentities($_POST['invoice_id'], ENT_QUOTES);
$program = htmlentities($_POST['name'], ENT_QUOTES);
$forWeek = htmlentities($_POST['desc'], ENT_QUOTES);
$value = htmlentities($_POST['value'], ENT_QUOTES);
$qty = htmlentities($_POST['amount'], ENT_QUOTES);
// put the VALUES array string for each row as such
$ValuesAddToQuery[] ="(NULL, '$invoiceID', '$program', '$forWeek', '$value', '$qty','0.00','1')";
}
在循环之后,我将$ ValuesAddToQuery数组内插为:
// add all the values into the statement
$stmt .= implode(',',$ValuesAddToQuery);
echo $stmt;
// execute statement
//mysql_query($stmt) or exit(mysql_error());
正如我所说,这个循环只会在遍历代码时插入最后一行相同的次数。
我的 var_dump 表明我在阵列中添加了最后一行两次。
非常感谢任何帮助。
对于我的循环的未剪切版本,这里是:
$stmt="INSERT INTO o70vm_invoices_items
(`id`, `invoice_id`, `name`, `desc`, `value`, `amount`,`discount`,`ordering` ) VALUES ";
// loop through the rows
for($rowCounter = 0; $rowCounter < $countRecords; $rowCounter++)
{
// assign variables based on each loop iteration
$invoiceID = htmlentities($_POST['invoice_id'], ENT_QUOTES);
$program = htmlentities($_POST['name'], ENT_QUOTES);
$forWeek = htmlentities($_POST['desc'], ENT_QUOTES);
$value = htmlentities($_POST['value'], ENT_QUOTES);
$qty = htmlentities($_POST['amount'], ENT_QUOTES);
// put the VALUES array string for each row as such
$ValuesAddToQuery[] ="(NULL, '$invoiceID', '$program', '$forWeek', '$value', '$qty','0.00','1')";
}
// add all the values into the statement
$stmt .= implode(',',$ValuesAddToQuery);
echo $stmt."<br /><br />";
var_dump($ValuesAddToQuery);
// execute statement
//mysql_query($stmt) or exit(mysql_error());
有关详细信息,我可以在此处获取上一张发票中的数据:
<td>
<input type="number" title="'.$row->invoice_id_on_items.'" name="invoice_id" size="2" id="invoice_id" value="' . $row->invoice_id_on_items. '" />
</td>
<td>(<a href="getIndItems.php?id=' .$row->item_id. '" target="_blank">EDIT</a>)<br>'.$row->item_id.'</td>';
$_SESSION['itemIDSelected']=$row->item_id;
echo'
<input type="hidden" title="'.$row->item_id.'" name="id" size="13" id="id" value="'.$row->item_id. '" />
<td>
<input type="text" title="'.$row->forweek.'" name="desc" size="15" id="desc" value="' . $row->forweek. '" />
</td>
<td>
<input type="text" title="'.$row->program.'" name="name" size="50" id="name" value="' . $row->program. '" />
</td>
<td>
<input type="number" title="'.$row->fee.'" name="value" size="3" id="value" value="' . $row->fee. '" />
</td>
<td>
<input type="number" title="'.$row->qty.'" name="amount" size="3" id="amount" value="' . $row->qty. '" />
</td>
';
$Fee = floatval($row->fee);
$Qty = floatval($row->qty);
$ItemFee=$Fee*$Qty;
echo '
<td>
<input type="text" title="'.$ItemFee.'" name="total_fee" size="3" id="total_fee" value="' . $ItemFee. '" />
</td>
然后,我使用上面已经说明的循环代码来获取数据。我可以毫无问题地检索过去的发票数据,但希望将其包含在我的问题中,以便您获得所有必要的信息以提供指导。
答案 0 :(得分:2)
此:
$invoiceID = htmlentities($_POST['invoice_id'], ENT_QUOTES);
$program = htmlentities($_POST['name'], ENT_QUOTES);
$forWeek = htmlentities($_POST['desc'], ENT_QUOTES);
$value = htmlentities($_POST['value'], ENT_QUOTES);
$qty = htmlentities($_POST['amount'], ENT_QUOTES);
每次循环播放时,您都会从$_POST
获取相同的值。 (您正在循环使用此代码多次,但每次获取&#34; invoice_id&#34;,&#34; name&#34;,&#34; desc&#34;等等。)
如果您从同一表单中获取多个值,则每个值必须具有不同的名称,然后通过POST将其传递给您的脚本。
例如,您可以在每个字段后添加一个数字,并使用循环计数器变量。
HTML:
<input name="invoice_id0" ... />
<input name="name0" ... />
<input name="desc0" ... />
<input name="invoice_id1" ... />
<input name="name1" ... />
<input name="desc1" ... />
PHP - 在你的循环中:
$invoiceID = htmlentities($_POST['invoice_id' . $rowCounter], ENT_QUOTES);
$program = htmlentities($_POST['name' . $rowCounter], ENT_QUOTES);
$forWeek = htmlentities($_POST['desc' . $rowCounter], ENT_QUOTES);
但实际上,您确实应该将用户提供的值注入SQL查询,就像您正在做的那样。请改用参数。 (从上面获取每个循环迭代的适当值的逻辑仍然适用。只是不要将它连接到VALUES语句中。)