I have a DELETE request that removes a record from mysql db.
is there any way to verify that the removal is complete or not?
I mean, for the APPOINTMENT request, you do
$res=mysql_query($var); $nr=mysql_num_rows($res);
and you will get nr returned rows.
Is there a similar method to delete records?
thanks
user188962
source share