Quote:
Originally Posted by ZTT
Looks like you're just echoing "print_r", printing the whole array.
Try something like this to loop through the values (there are other ways to loop, if you prefer):
foreach ($pe as $pelist) {echo "$pelist\n";}
|
Thanks for the suggestion.
I've tried the code you just suggested but it appears to cut the amount of results significantly (from 100+ down to roughly 20 from the array).
Any thoughts on why that might be happening?