I am trying to execute my PHP code, which calls two MySQL queries via mysqli, and get the error \"Commands out of sync; you can\'t run this command now\".
Here is th
Create two connections, use both separately
$mysqli = new mysqli("localhost", "Admin", "dilhdk", "SMS"); $conn = new mysqli("localhost", "Admin", "dilhdk", "SMS");