Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6341695
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T20:05:20+00:00 2026-05-24T20:05:20+00:00

I have a bit of an issue with my code. I’m making an administrative

  • 0

I have a bit of an issue with my code.

I’m making an administrative panel for users to add things to the database. On occasion, they might try to save data without changing it (open a dialog, click save without changing anything). This, of course, will make mysql_affected_rows() return ‘0’ when checking to see if the UPDATE query worked.

Is there another query to make that will always UPDATE regardless of whether the data is the same or not (or can I modify a simple UPDATE query to always update)?

EDIT

This is for users who don’t have programming experience. Of course you wouldn’t want to update if there’s no reason to, but when a user tries to update and it doesn’t happen I end up showing a failure message. Rather than there being something wrong, its just it doesn’t need to be updated. I need a way to show the user that, instead of a generic ‘failure’ message. If it failed for another reason, I still need to know.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T20:05:21+00:00Added an answer on May 24, 2026 at 8:05 pm

    From the MySQL Documentation:

    If you set a column to the value it currently has, MySQL notices this
    and does not update it.

    Instead of checking mysql_affected_rows, just check to see if the query was successful:

    if(!mysql_query("UPDATE ..."))
    { 
      //failure
    }
    else
    {
        $verification = mysql_query("SELECT ROW_COUNT() as rows_affected");
        $row = mysql_fetch_row($verification);
        $rows_affected = $row[0];
    
        if ($rows_affected > 0)
        {
            //update was performed
        }
        else
        {
            //no update was needed
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have run into a bit of a design issue with my code. I
I'm having a strange issue here, i have this bit of code: <?php if
I have created a sample here to show the issue.... http://bit.ly/j2nb1k The code is
I have a bit of a weird issue. I want to add a div
I have a bit of an issue for my JSP site. I have it
I have a bit of an issue with a site I maintain. I have
hello fellow java developers. I'm having a bit of an issue here. I have
I have an issue that is driving me a bit nuts: Using a UserProfileManager
i have bit of code that causes an underflow: var t1, t2, delta: DWORD:
I have a bit of code that basically reads an XML document using the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.