Hi -
I'd like to grab the total number of links found from the results array. It seems to be under "result_message", but I can't figure out how to get it yet. Any ideas? Thanks.
Just thought I'd mention the way I'm searching the array...I think it's faulty. Check it out:
PHP Code:
while ($results['results'][$i]['weight']){
// Add weight of results to total until loop finishes
$total += $results['results'][$i]['weight'];
$i++;
}
This adds the weights of the results but only the first 10. This is related to the first problem I think, because I can't figure out how to get all the results. Thanks again