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"? Link to comment https://forums.phpfreaks.com/topic/6996-how-to-determine-a-action-has-been-completed/ 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] Link to comment https://forums.phpfreaks.com/topic/6996-how-to-determine-a-action-has-been-completed/#findComment-25411 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 :) Link to comment https://forums.phpfreaks.com/topic/6996-how-to-determine-a-action-has-been-completed/#findComment-25416 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.