尝试运行时,它会给我这个错误
$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];
}
请注意我的教授要求我使用第一行来完成这个特定的课程。