I run a select query the returns 10,000-100,000 unique items
then a while loop that performs ten or so functions.
what i need to do is group the results by 10 and then run a function on those 10 at one time then update the same table with the results of the function. i know how to run the while loop and write the functions but i cant get around the group by ten run the function and then move on to next until the while loop is complete.
$results = $conn->query("select asin from masterguide25ManFinal ");
while ($rows = $results->fetch_assoc()) {
$asin = $rows['asin'];