When using the below command
$query=$comm->prepare("DELETE FROM ? WHERE id = ?");
I am receiving the following error
You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use
near ‘? WHERE id = ?’ at line 1
if i remove ? and replace it with table name the code is working properly. Please Help
?is used for parameters, which can change. Why are you using?for the table name? It remains constant.