You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed the same thing, but I would suggest also checking via javascript if anything was changed to avoid unnecessary connection to the database and processing stuff in the server.
Hi,
When you perform a query that updates a record and this remains unchanged but the query returns false could run normally without any error.
I solved it by making the condition of the if is equal to or greater than 0
if($query >=0){
return true;
}else{
return false;
}
The text was updated successfully, but these errors were encountered: