$save = "UPDATE user SET M_ID='{$_SESSION['ha1'] }' WHERE U_ID ='{$_SESSION['ID'] }'";
$reslt = mysqli_query($conn, $save) or die(mysql_error());
header('location: treatment.php');
标题不能在线工作,但它适用于localhost,请帮忙吗?
答案 0 :(得分:2)
更改
mysql_error()
为:
mysqli_error($conn)
启用PHP错误报告,以查看脚本执行时会发生什么。
答案 1 :(得分:0)
尝试更改" location"用小写字母表示"位置" (" L"大写)
他的问题可能来自在本地使用Windows和在服务器上使用Linux