I'm using a Flex application to make two calls to my database via PHP. On my second call I'm getting an error which shows in my proxy debugger as Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 40961 bytes) which is very confusing to me because the first search must have taken a LOT of memory.
Just before I show code i'll say that I have a users table containing only 15 rows, with only 10 small columns and I have a businesses table which contains 19 rows with 19 columns. so basically I don't have a lot of data in the first place.
My first has the following Flex code within a function:
user=new User();
user.facebookid = facebookidLbl.text;
getUserIDResult.token = userService.getUserByID(user);
Which calls the following function in PHP:
public function getUserByID ($item)
{
$getfbid = mysqli_real_escape_string($this->connection, $item->facebookid);
$stmt = mysqli_prepare($this->connection,
"SELECT
users.facebookid,
users.dob,
users.latitude,
users.longitude
FROM users where users.facebookid='{$getfbid}'");
mysqli_stmt_execute($stmt);
$row = new User();
mysqli_stmt_bind_result($stmt, $row->facebookid, $row->dob, $row->latitude, $row->longitude);
if (mysqli_stmt_fetch($stmt)) {
return $row;
} else {
return null;
}
mysqli_stmt_free_result($stmt);
mysqli_close($this->connection);
}
Then the second function is has only the following line in flex: getBusinessResult.token = businessService.getBusiness(business);
Which calls the following PHP:
public function getBusiness ($item)
{
$result = mysqli_query($this->connection, "SELECT * FROM businesses");
while (($row = mysqli_fetch_array($result, MYSQL_NUM)) !== false)
{
$data[] = $row;
}
The second function takes at least a minute to complete, then I get the error mentioned above, whereas the first function happens almost instantly. I would assume it's the second function, but the error also states that it's trying to allocate 40961 bytes, which is a lot smaller than the quota, so it must be the first search that's doing this. I'm really stuck, so any help is greatly appreciated