在FROM或其附近的PostgreSQL语法错误

时间:2012-11-12 17:09:26

标签: php postgresql

我遇到这个PHP的问题。这意味着打印出从最后一页中选择的产品表 - 通过POST,其名称格式为'quantityN',其中N是数字<150&amp;是指CSGames表中的唯一ID - 主键。

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

错误:

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

我的实时项目可以找到here - index&gt; catalog&gt; basket。

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

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++;
}

1 个答案:

答案 0 :(得分:4)

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]