当我在本地主机(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;
}


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

最佳答案

函数q()在ajaxCRUD文件夹内的preheader.php文件中定义。只需在ajaxCRUD.class.php之前包含它即可。

10-06 00:18