0

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

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

4

1 回答 1

3

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

于 2012-12-27T11:58:32.697 回答