Wednesday, February 22nd, 2012
31
Jul
In PHP and Scripting | On 31st July 2010 | Comments (15)
Thankyou to an enquiry that came in today, letting me know that my download script was broken for my Free Multisite Pinger in PHP. I have fixed the script now, so you can try to access it again.For the record, here was the error that was fixed. - Subscription Status Thankyou, your subscription was a success. A PHP Error was encountered
30
May
In PHP and Scripting | On 30th May 2010 | Comments (245)
Here is the Bing rank function kids. Bing Rank Checker.Enjoy! /* Function to get ranking position of domain for given keyword. * var $keyword [string] * var $domain [string] | www.domain.com | domain.com * Whichever you expect your domain to be listed with or without www prefix. */ function bingrank($keyword,$domain){ $rank = '0'; $urls = array(); for($i=0;$i<5;$i++){ $rn=$i=='0'?'':$i; $query...
29
May
In PHP and Scripting | On 29th May 2010 | Comments (3)
Here is the function to get Yahoo rank for your keyword and domain. Yahoo Rank Checker.As with the Googlerank function in the previous post, if you want the function to search through more yahoo pageschange the for($i=0;$i<5;$i++){ line in the code.Enjoy!Next will a function to get your ranking in "Bing". /* Function...
28
May
In PHP and Scripting | On 28th May 2010 | Comments (42)
Ok kids, I'm going to break these down into functions so it's easier and you can put them in your projects rather than me recreating an entire application to run them all at once.This one is a PHP function to return your ranking for a keyword in Google. The Google Rank Checker. Provide your keyword and domain in the form.(make sure you use the correct suffix for your domain - www.domain.com or domain.com Hit the button The function returns the ranking...
27
May
In PHP and Scripting | On 27th May 2010 | Comments (12)
Ok so nobody really wants a full blown tool to check their stats on Google, Yahoo, and Alexa.But I figured that since I looked for something like this quite a while ago I'd give you guys some small functions to use in whatever scripts you're building so you can grab backlink numbers, pages indexed and Alexa ranking.It might save someone some time trying to figure out the regex etc..It's not the be all and end all, but it works and does the job.It goes out...