Maverickb7 Posted April 10, 2006 Share Posted April 10, 2006 Hello-- I have a cms I'm working on and would like to get some help with something. I add/edit/remove articles using PHP and MySQL. I usually use something like:[code]$query = "UPDATE table SET tablecolumn = '$stuff'";[/code]I was wondering how I could confirm that its been successful and display text such as "Update Successful"? Quote Link to comment Share on other sites More sharing options...
toplay Posted April 10, 2006 Share Posted April 10, 2006 See instructions and code examples of the mysql_query() at:[a href=\"http://us2.php.net/manual/en/function.mysql-query.php\" target=\"_blank\"]http://us2.php.net/manual/en/function.mysql-query.php[/a][!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--]For other type of SQL statements, UPDATE, DELETE, DROP, etc, mysql_query() returns TRUE on success or FALSE on error.[/quote] Quote Link to comment Share on other sites More sharing options...
Yesideez Posted April 10, 2006 Share Posted April 10, 2006 I use something like this:[code]if (mysql_query("UPDATE table SET `field`='$newcontents' WHERE `condition`='true'")) { echo "Update successful";} else { echo "Update failed";}[/code]It works for me :) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.