Delete a parent post and all its (child) comments with a single MySql query
there is a table
id test autorid parentid ojectid
parentid=0 if it's a post, otherwise it's a comment on a post
very simple
DELETE FROM postAndCommentTible WHERE parentid= ? OR id =?
Comments