致命错误:在第1861行的ajaxCRUD.class.php中调用未定义的函数q()

时间:2012-12-27 11:55:20

标签: php javascript ajax jquery

当我在localhost(http://www.ajaxcrud.com/)上测试ajaxcrud时。我收到了以下错误。

Fatal error: Call to undefined function q() in ajaxCRUD.class.php on line 1861

以下是存在错误的地方。

function getFields($table){
    $query = "SHOW COLUMNS FROM $table";
    $rs = q($query); // Line 1861

    $fields = array();
    foreach ($rs as $r){
        //r sub0 is the name of the field (hey ... it works)
        $fields[] = $r[0];
        $this->field_datatype[$r[0]] = $r[1];
    }

    if (count($fields) > 0){
        return $fields;
    }

    return false;
}

希望有人可以帮助我。非常感谢你......

1 个答案:

答案 0 :(得分:3)

函数q()在ajaxCRUD文件夹内的preheader.php文件中定义。只需在ajaxCRUD.class.php之前加入。