I am unable to return multiple rows from a stored procedure in php.
When I call the stored procedure using "Navicat", I do see multiple
results, yet when I call it from PHP using mysqli or mysql,
I only get one record :mad:
My Stored procedure has the following format:
BEGIN
SELECT name,surname from users;
END;
I have googled but found no solution, one mentioned PDO works,
but I would rather use the standard mysqli;