How do I find the number of rows affected by a query?
The function you will want is mysql_affected_rows which you call after the query has run, and it will tell you how many rows were affected.
Comment on this Question and Answer >>>
ASK A QUESTION
More mysql PHP Questions
How do I insert the date into my table?how to write sessions in php code?
How do I connect to mySQL from PHP?
How do I delete a row from a table?
Why will this statement not print a column with "lastname space firstname"? Print " .$info['businessname'] "; Print " .$info['firstname']. " " .$info['lastname'] "; I want to see 2 columns - a
