Deleting rows from different tables
- by Ross
Here is what i'm trying to do:
Delete the project from projects table and all the images associated with that project in the images table
Lets say $del_id = 10
DELETE FROM projects, images WHERE projects.p_id = '$del_id' AND images.p_id = '$del_id'
What is wrong with this query