I want to delete recordfs from multiple tables where the id matches but have been unable to work out how to do this??
The MYSql version on my remote server does not support this so I need to do in in two queries but I cannot get this working, it goes through OK but when I check my database it actually hasnt been removed?
//insert manufacturer values into database
$Query = "DELETE from manufacturer where dbManufacturerId = '$man_id'";
$Query = "DELETE from model where dbManufacturerId = '$man_id'";
what do I need to change to make the 2 queries work together?
Thanks for your help!