asked on
$query1 = $conn->query('SELECT * FROM `download`
LEFT JOIN `options`
USING (ParentSKU)');
while ($row1 = $query1->fetch(PDO::FETCH_ASSOC))
{
echo $row1['ProductName']." ".$row1['Choice']."<BR>";
}
ASKER
ASKER
PHP is a widely-used server-side scripting language especially suited for web development, powering tens of millions of sites from Facebook to personal WordPress blogs. PHP is often paired with the MySQL relational database, but includes support for most other mainstream databases. By utilizing different Server APIs, PHP can work on many different web servers as a server-side scripting language.
TRUSTED BY
Why not just select the ProductName and the Choice from their respective tables EX. download.ProductName,optio
This should reduce the amount of memory needed to retain the large output.