How can I delete several entries from the database that all have the same order number? Instead of deleting one at a time, can it cycle through deleting them all together, while leaving other order #s alone?
Need more info chief.
if they all have the same order #, why not try something like this:
$result=mysql_query("DELETE from table where order_number='$num'") or die(mysql_error);
HTH
Kidsleep
Use WHERE statements if you want to delete a specific row...