我有这段代码,当我回显提交或更改的值时,它允许用户使用 php 和 mysql 从表单编辑他们的个人资料,它显示正确和编辑值,但数据库中没有任何变化,谁能帮我解决这个问题
这是我正在更新查询的部分
如果您需要任何附加文件,请告诉我,谢谢
搜索.php
//submit whatthe user types into the database
$fname = $_POST['fname'];
$lname = $_POST['lname'];
$country = $_POST['country'];
$spec = $_POST['specialization'];
///errroor in updating the dataabse
$edit_query = mysql_query("UPDATE user SET first_name= '$fname', last_name= '$lname', address= '$country', specialization_name= '$spec' WHERE user_name = '$username'") or die(mysql_error());