尝试插入随机电子邮件,例如test'' @ test.com等,然后将它们插入到数据库中。不应该通过Active Record自动阻止这种情况吗?
我的查询:
$data = array(
'name' => ''.$name.'' ,
'email' => ''.$email.'' ,
'country' => ''.$country.'' ,
'phone' => ''.$phone.'' ,
'compid' => ''.$compID.''
);
$this->db->insert('people', $data);
所有变量都来自用户POST输入,例如
$this->input->post('address')
代表地址。
答案 0 :(得分:0)
不应该是:
function removeHandler() {
document.getElementById(".lightbox").removeEventListener("mouseout", evt);
}