Hello,
New to PHP and mySQL, need help deleting records from mySQL using PHP. How do i set up a validation so that an error message will be returned if the record is not found.
jabroni_no5
MySQL won't return any errors if you try to delete a record that doesn't exist.
The only way you could check would be to try and SELECT the record first, if 0 rows are returned it doesn't exist.
HTH