1

我对这段 PHP 有问题。它的目的是打印从最后一页选择的产品表 - 通过 POST 传递,名称格式为“quantityN”,其中 N 是一个 <150 的数字,表示 CSGames 表中的唯一 ID - 主键。

我知道问题不在于我的 $connection,因为我在最后一页中成功加载了列表。

错误:

Warning: pg_query() [function.pg-query]: Query failed: ERROR: syntax error at or near "FROM" LINE 1: ...efnumber,name,platform,price WHERE refnumber='20' FROM CSGam... ^ in /berw/homes1/g/gij2/public_html/cs25010/basket.php on line 102

我的现场项目可以在这里找到- 索引>目录>篮子。

有谁知道我的代码有什么问题?提前致谢。

echo "
<table border='1'>
    <thead>
        <tr>
            <td>
                Title
            </td>
            <td>
                Platform
            </td>
            <td>                                            
                Price
            </td>
            <td>
                Quantity
            </td>
            <td>
                Total price
            </td>
        </tr>
    </thead>
    ";

$id=0;
$sum=0;
while($id<150){ //  Loops through the POST associative array
    if($_POST['quantity'.$id]>0){
        $result=pg_fetch_row(pg_query($connection,"SELECT refnumber,name,platform,price WHERE refnumber='".$id."' FROM CSGames"));
        $total=$result[4]*$_POST['quantity'.$id];
        echo "
            <tr>
                <td>
                    ".$result[1]."
                </td>
                <td>
                    ".$result[2]."
                </td>
                <td>
                    &pound;".$result[3]."
                </td>
                <td>
                    ".$_POST['quantity'.$id]."
                </td>
                <td>
                    &pound;".$total."
                </td>
            </tr>
            ";
        $sum+=$total;
    }
    $id++;
}
4

1 回答 1

5
SELECT refnumber, name, platform, price FROM CSGames WHERE refnumber='".$id."'

应该管用。SELECT 语句的结构总是这样:

SELECT [column names] FROM [table name] WHERE [conditions]

您的查询结构如下:

SELECT [column names] WHERE [conditions] FROM [table name]
于 2012-11-12T17:10:54.383 回答