This is a MySQL PHP(5.2.5) setup.
I'm doing a basic call to a procedure like so...
$sp = mysql_query("CALL AlmGetRecord()");
$res = mysql_fetch_array($sp) or die(mysql_error());
print_r($res);
But no matter what i do, i get this error.
PROCEDURE AlmGetRecord can't return a result set in the given context
I did some quick googling around, didn't find much other than it being a potential Bug in PHP. Can anyone confirm that? or tell my why this error keeps popping up?
Thanks!