マイCodeIgniterのプロジェクトは、ローカルホスト上でうまく動作しますが、私はライブサーバーにアップロードするときに、このようないくつかのエラーを生成します。このコードの一部でERROR:「予期しないT_CONSTANT_ENCAPSED_STRING」
ERROR: "unexpected T_CONSTANT_ENCAPSED_STRING"
:
$username = $this->input->post('username');
$email = $this->input->post('email');
$password = $this->input->post('password'); $flag = 0;
$data = $this->user_model->Signup_user((
'username' => $username
'email' => $email
'password' => $password
'flag' => $flag
));
配列要素は、カンマ 'username' => $ username、 'email' => $ emailなどで区切る必要があります。 – scaisEdge