代码点火器选择AND



如何使用代码点火器选择位置?//select * from item_user where email="myemail@gmail.com" and passwd="123"

function index_get() {
$email = $this->get('email');
$passwd = $this->get('passwd');
$sql = "SELECT * FROM web_user ";
if ($email != '') {
$this->db->where('email', $email & 'passwd', $passwd);
$item_user = $this->db->get('web_user')->result();
}
if ($item_user) {
$this->response([
'status' => true,
'message' => 'found',
'data' => $item_user
], REST_Controller::HTTP_OK);
} else {
$this->response([
'status' => false,
'message' => 'not found',
], REST_Controller::HTTP_NOT_FOUND);
}
}

我认为我的错误语法是围绕$this->db->where('email', $email & 'passwd', $passwd);请帮助我,在哪里可以轻松地学习这类CI?

希望这能帮助

$this->db->where('email', $email);
$this->db->where('passwd', $passwd);
$item_user = $this->db->get('web_user')->result();

如果您使用GET方法使用此获取数据

$email =  $this->input->get('email');

如果您使用POST方法使用此获取数据

$email = $this->input->post('email');

您可以尝试更换此

$this->db->where('email', $email & 'passwd', $passwd);

带有

$this->db->where(array('email' => $email, 'passwd' => $passwd));

//生成:WHERE电子邮件="your_email_val_here",密码="your_password_val_here">

你可以在代码点火器查询构建的官方文档中了解更多类似的东西

相关内容

  • 没有找到相关文章