调用未定义的方法MDB2_Error :: fetchrow()

时间:2014-05-14 01:55:33

标签: php sql fatal-error

尝试运行时,它会给我这个错误

$result1 =& $db->query($query);
    if (PEAR::isError($query)) {
        die($result1->getMessage());
    }

    while($row = $result1 -> fetchrow()){ //this is the line error points to
        $names = $row[1];
        $weekendprice = $row[3];
        $weekdayprice = $row[4];
    }

请注意我的教授要求我使用第一行来完成这个特定的课程。

0 个答案:

没有答案