I have a class which is working fine but I need to do multiple results.
Here is the current code:
$url = 'http://mydomain.com';
$keyword = 'somekeyword';
$RankChecker=new RankChecker(1,5);
$result=$RankChecker->find($url,$keyword);
if ($result!==false) {
echo "Your website is found at page number ".$result["page"].".";
}
What is the best way to get it to read multiple url's / keyword's ?
RankChecker?