
Greg Milby - 2012-12-17 03:00:35
instead of the overlapping foreach - just split the object in one for loop - i was getting each tweet 10 times over with the published foreach's
hope this helps:
for($i=0;$i<sizeof($twits->result['date']);$i++) {
echo $twits->result['date'][$i] . ' : ' .
$twits->result['description'][$i] . ' - ' .
$twits->result['link'][$i] . '<br />';
}