简体   繁体   中英

Php mysql update puts in blank space

Okay, so i have a problem here. I solved the updating to a mysql database with just set values. But now i want to let the user put something by use of a textbox to update a row. this doesnt seem to work

code:

$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))
        {
    ?>

It just doesnt update it with the right value, it makes it a blank space in my row.

是因为您要更新一个名为users的表,然后从一个名为voskousers的表中进行选择吗?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM