If I am using PHP without a stored procedure I would write something like
$result = mysqli_query($connection, "select * from whatever");
but what happens if the "select * from whatever" is in a stored procedure?
how then do I get the $result?
Do I need to write it in such a way that it returns a cursor to php?