1

错误 - -

解析错误:语法错误,第 71 行 C:\wamp\www\jobsite\application\models\model_users.php 中的意外 T_RETURN

public function profile_data()
{
    $this->load->database();
    $query = $this->db->get('tbl_studentreg')  //tbl_studentreg is the table name
    return $query->result();                   // Line 71
}

我可以知道如何解决吗?提前致谢。

4

1 回答 1

1

您在这里缺少分号:

$query = $this->db->get('tbl_studentreg'); //semicolon added
于 2013-04-09T07:48:34.817 回答