0

我有这个 PHP/HTML 代码:

<form method="post" action="create_quote2.php">
<table width="800" border="0" cellspacing="5" cellpadding="5">
  <tr>
    <td><strong>Select</strong></td>
    <td><strong>Image</strong></td>
    <td><strong>Name</strong></td>
    <td><strong>Sale Price</strong></td>
    <td><strong>Quantity</strong></td>
  </tr>
<?php
$sql="SELECT * from products ";
$rs=mysql_query($sql,$conn) or die(mysql_error());
$counter=0;
while($result=mysql_fetch_array($rs))
{
    $counter++;
    echo '<input type="hidden" name="product'.$counter.'" value="'.$_POST["checkbox$i"].'" />';
    echo '<tr>
                <td><input type="checkbox" value="'.$result["sequence"].'" name="checkbox'.$counter.'" /></td>
                <td>Image</td>
                <td>'.$result["title"].'</td>
                <td>&pound;'.$result["saleprice"].'</td>
                <td><input type="text" name="qty" id="qty" size="20" /></td>
              </tr>';
}
echo '<input type="hidden" name="counter" value="'.$counter.'" />';
?>
</table>
<input type="submit" name="submit" value="Next" />
</form>

因此,当检查框时,您可以使用此代码转到下一页:

<table width="800" border="0" cellspacing="5" cellpadding="5">
  <tr>
    <td><strong>Image</strong></td>
    <td><strong>Title</strong></td>
    <td><strong>Sale Price</strong></td>
    <td><strong>Trade Price</strong></td>
    <td><strong>Quantity</strong></td>
    <td><strong>Total Cost</strong></td>
  </tr>
<?php
for($i=1; $i<=$_POST["counter"]; $i++)
{
    if($_POST["checkbox$i"])
    {
        $counter++;
        $sql="SELECT * from products where sequence = '".$i."' ";
        $rs=mysql_query($sql,$conn) or die(mysql_error());
        $result=mysql_fetch_array($rs);     
        echo '<tr>
                    <td>Image</td>
                    <td>'.$result["title"].'</td>
                    <td>&pound;'.$result["saleprice"].'</td>
                    <td>&pound;'.$result["tradeprice"].'</td>
                    <td>&nbsp;</td>
                    <td>&nbsp;</td>
                  </tr>';   
    }
}
?>
</table>

它工作正常并从产品表中选择所有正确的产品,但我需要一种方法来获取每行的发布数量值。

如何在第二页显示发布的数量值?

PS我不担心这段代码上的SQL注入......

4

2 回答 2

1

<input type="text" name="qty'.$counter.'" id="qty'.$counter.'" size="20" />在第一页使用

然后$_POST["qty{$counter}"]$_POST['qty'.$i]在相关单元格中

作为旁注,您可能会发现使用 HEREDOC 结构更容易,这样您就不必继续添加引号来回显内容:

echo <<<BLOCK
<tr>
    <td>Image</td>
    <td>{$result["title"]}</td>
    <td>&pound;{$result["saleprice"]}</td>
    <td>&pound;{$result["tradeprice"]}</td>
    <td>Quantity - {$_POST['qty'.$i]}</td>
    <td>&nbsp;</td>
</tr>

BLOCK;

我发现 HEREDOC 很有帮助,因为引号不会相互融合

于 2013-08-08T22:09:52.343 回答
0

要获得您的数量,只需更改:

<input type="text" name="qty" id="qty" size="20" />

<input type="text" name="qty'.$counter.'" id="qty" size="20" />

然后以与其他输入相同的方式引用。

于 2013-08-08T22:02:44.853 回答