I am using a php script for showing the Google pagerank in our inboundlink Analysis Tool. This php script is showing the PR correctly for most of the URLs. But it is giving error for the urls having multiple querystring parameters (e.g http://qualitypointtech.net/forum/viewtopic.php?f=25&t=870 ) I would like to make this script work for all the urls. Let me know if you know how to make it work. Note that I have tried lot of options (e.g urlencode) without success. So, just make sure that it is working for you before you suggest any changes or any script.
Try using the urlencode() function when sending the URL to the PR checker ie. $link = "http://qualitypointtech.net/forum/viewtopic.php?f=25&t=870"; $link = urlencode($link); PHP: and then pass $link to the PR check tool