标签: php
This is the php code thats getting the record from view
the html code
the update code which z not working
答案 0 :(得分:-1)
首先阅读 Documentation
请注意UPDATE语法中的WHERE子句:WHERE子句 指定应更新的记录或记录。如果省略 WHERE子句,所有记录都将更新!
$sql = "UPDATE table SET field = '$variable',field2 = '$variable2'";
在您的代码中,问题出现在您的更新查询中。检查一下manualy。