This is question, however:
In a PHP file, I am running an ezSql command (http://justinvincent.com/ezsql):
$_result = $db->get_var("CALL spcheck ('".$_var1."')");
then I have a if ($_result..
within that if, I have:
$_logInsert = $db->query("CALL splog1 ('".$_referrer."','".$_userAgent."','".$_ipAddress."','".$_countryCode."')");
However, I get the error:
"Warning: Commands out of sync; you can't run this command now" when I try the second db call (first one runs fine)
Is it not possible to have a globally defined $db and use it throughout the page multiple times? Do I need to somehow "cancel the get_var after its executed so I can reuse it?
$dbvariable multiple times. – Lucanos Jan 6 '12 at 8:43CALL ... (...)myself, inside or outside of the ezSQL library, so I have no idea why it would be failing. Maybe this would be better directed to Justin Vincent, the creator of the library - justinvincent.com/ezsql. As it's his baby, he'll have a better idea of any limitations/bugs. – Lucanos Jan 8 '12 at 22:01