查询是
$sql = "update students set status = 'active', student_password='{$password}' where student_id ='".$_GET['id']."'";
它显示结果为
update students set status = 'active', student_password='50d0d53f546b7' where student_id ='112s23dd'
错误来了
Unknown column '112s23dd' in 'where clause'
当我在 where 子句中输入任何 int 值时,它可以正常工作,但不能在字符中工作,student_id 是主键 varchar(30)
另一个奇怪的事情,当我将它粘贴到 phpmyadmin 时它正在工作,但当我执行它时不起作用网页