PHP and htaccess tips and tricks

17 useful htaccess tips and tricks – http://www.queness.com/post/5421/17-useful-htaccess-tricks-and-tips How to get all social media members count by using php Feedburner Twitter Facebook Delicious It grab the total number of twitter followers, feedburner subscribers and also delicious bookmarks of your account/website. 1 2 3 4 5 6 7 8 9 10 11 … Read more

Get domain favicon using PHP and Google

These days, many websites or webapps are using favicons from other websites. Displaying a favicon on your own site is pretty easy using Google and some PHP. function get_favicon($url){ $url = str_replace(“http://”,”,$url); return “http://www.google.com/s2/favicons?domain=”.$url; }

Load Time in PHP

This one is a must for developers and system admins. You need to know how long your site takes to load. Nobody sticks around waiting for a site to load anymore – there’s way too much content out there for that. Use this script to find out if your site … Read more