警告:第637行的C:\ xampp \ htdocs \ SwaziTour \ MyDashboard.php中的字符串偏移量'ID'非法

时间:2018-12-06 09:43:38

标签: php mysql

我从For循环的下面得到了Error;

while($Row=mysql_fetch_array($qry)){
    $result_list[] = $Row;

}
foreach((array)$result_list as $Row) {
    $ID=$Row['ID'];
    $Name=$Row['name'];
    $has_acco = $Row['Accomodation'];
}

1 个答案:

答案 0 :(得分:0)

以这种方式尝试代码

while($Row=mysql_fetch_array($qry)){
    $ID=$Row['ID'];
    $Name=$Row['name'];
    $has_acco = $Row['Accomodation'];
}

不需要多余的for loop