I´m trying to delete multiple records on multiples tables at once
Using an sql script into php mysql_query function :
$sql= " delete from table1 where id = '$id';
delete from table2 where id = '$id';
delete from table3 where id = '$id';";
mysql_query($sql, $connect);
But it not seems to be working, is there some mistake ? Is there other way to do that ?