Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8631489
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T09:13:37+00:00 2026-06-12T09:13:37+00:00

I am having an issue with getting a Allowed memory size of … bytes

  • 0

I am having an issue with getting a “Allowed memory size of … bytes exhausted” when calling a SQL query thru php. I believe the array creator is stuck in a loop, somehow.

My php:

<?php
function confirm_query($result_set) {
    if (!$result_set) {
        die("DB query fail: " . mysql_error());
    }
}


$con = mysql_connect("mysql15.000webhost.com", "***_mw", "***");
if (!$con) {
        die("DB connect fail: " . mysql_error());
}

$mySqlDB = "a9414387_build";
$dbSelect = mysql_select_db($mySqlDB, $con);
if (!$dbSelect) {
    die("db select fail: " . mysql_error());
}


$sku = $_POST['serching'];
$query = "SELECT * FROM inventory1 WHERE id LIKE '{$sku}%'";
$result = mysql_query($query, $con);
$des = mysql_fetch_array($result);
$matches = mysql_num_rows($result);
$json = array();
if ($matches > 0) {
    while($des) {
        $bus = array(
            'description' => $des['description'],
            'price' => $des['price'],
            'sku' => $des['id'],
            'type' => $des['type'],
        );
        $jsonString = array_push($json, $bus);
    }

    echo json_encode($jsonString);

    } else {
        echo json_encode(NULL);
    }

die();
?>

But, if i comment out:

while($des) {
            $bus = array(
                'description' => $des['description'],
                'price' => $des['price'],
                'sku' => $des['id'],
                'type' => $des['type'],
            );
            $jsonString = array_push($json, $bus);
        }

and replace $jasonString with $des i get something like:

{"0":"4040284","id":"4040284","1":"F","active":"F","2":"T","defaults":"T","3":"aurora,superNova","model":"aurora,superNova","4":null,"defmodel":null,"5":"mboard","type":"mboard","6":"105","price":"105","7":"Intel H67 (1155) Motherboard","description":"Intel H67 (1155) Motherboard","8":"1155","socket":"1155","9":"Not available at this time.","infoDiv":"Not available at this time.","10":"IntelH67Socket1155Motherboard.jpg","image":"IntelH67Socket1155Motherboard.jpg"}

I am not looking to extend the memory size, b/c one small array should not be this big.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T09:13:37+00:00Added an answer on June 12, 2026 at 9:13 am
    $des = mysql_fetch_array($result);
    $matches = mysql_num_rows($result);
    $json = array();
    if ($matches > 0) {
        while($des) {
    

    You need to re-assign $des inside your loop; otherwise, you’re constantly checking the same database row. Try something like this:

    $matches = mysql_num_rows($result);
    $json = array();
    if ($matches > 0) {
        while($des = mysql_fetch_array($result)) {
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm having an issue getting a COUNT() from a SQL query using Zend_Db_Table_Select, and
I'm having an issue getting a LINQ query to work. I have this XML:
I'm having an issue getting some code to work. Is there a way to
I'm having an issue getting files loaded into an app called GCS, by dragging
I'm having an issue getting this CSS for a sprite sheet to work on
I'm having an issue getting Appstats to work correctly. Using /appstats or /appstats/stats ends
I'm having an issue getting the correct value from my drop down box. Basically
I'm having an issue with getting the fancybox iframe to load in the browser.
Im having an issue where Im getting an empty value for the value of
I am getting into C# and I am having this issue: namespace MyDataLayer {

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.