好的,我这里有问题。我用刚刚设置的值解决了对mysql数据库的更新问题。但现在我想让用户通过使用文本框来更新一行。 这似乎不起作用
代码:
$newfirstname = $_POST['newfirstname'];
//Update the record
$updateQuery = "UPDATE users SET firstname = '".$newfirstname."' WHERE KcID = 2";
mysql_query($updateQuery) or die("Error: ".mysql_error());
//create the query
$query = mysql_query("select * from voskousers");
//return the array and loop through each row
while ($row = mysql_fetch_array($query))
{
?>
它只是没有用正确的值更新它,它使它成为我行中的空白区域。
答案 0 :(得分:0)
是否因为您正在更新名为用户的表格,然后从名为 voskousers 的表格中进行选择?