I know this is simple, but how would I delete multiple entries from mysql db that all have the same ID number? Like two products have order ID #2 and two have #3, if I want one script to delete all entries with ID #2, what would I do?
Take a look at the mysql manual.
DELETE FROM table WHERE order_id = 2