开发者

PHP Mysql Update issue

开发者 https://www.devze.com 2023-02-06 14:17 出处:网络
I\'m having an issue that I can\'t quite figure out. I have a bit of code that开发者_如何学JAVA allows a user to pick, let\'s say, which type of fruit is their favourite. If they\'ve previously select

I'm having an issue that I can't quite figure out. I have a bit of code that开发者_如何学JAVA allows a user to pick, let's say, which type of fruit is their favourite. If they've previously selected 'apples' as their favourite and want to change it to 'oranges' - the script performs well.

But if they select 'apples' when they've already selected 'apples' the MYSQL Update call breaks down and returns an error. It's like it won't write over itself with the same data, that the new value has to be unique. I'm at a loss.... Here's the update bit:

    // UPDATE THEIR FRUIT SELECTION...
    $q = "UPDATE account SET fav_fruit='" . $row['fruit'] . "' WHERE act_id=$act_id LIMIT 1";       
    $r = @mysqli_query ($dbc, $q);
    if (mysqli_affected_rows($dbc) == 1) { // If it ran OK.
           echo 'success!';

    } else { 
        echo 'oops!';
    }

Again, this works so long as the new selection and what's in the database aren't the same. If they are: I get the oops! error.


Why would you need to update a field to contain a value it already contains? Regardless, this can be fixed by altering the table structure. You need to remove the unique flag from the fav_fruit column.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号