hello is this how u do a delete query from mysql table i need to delete it depending on id number so if user enters id 10 it needs to delete the all the rows that have id 10 from any table which has that id.. thanks
$query = "DELETE
tbl_name[.*] [, tbl_name[.*]]
FROM tom, ron, chris, bert
WHERE id ='$value'";
$result = mysql_query($query);