I want a php client script to ping technorati.Please give an example here so that I can ping my blog.Dont ask me to ping through other pinging services or wordpress' ping.I want a php script which I can install on my server and start pinging. Thanx in advance
There is a script @ http://www.martin-nielsen.com/blog/php_blog_ping_v0.5_-_nemmere_end_nemt-184.html Although it is in Danish, it hould be fairly simple to us anyway. Put the function in an inlude file: blogPing.php. $blogurl is the url of your blog $blogname is the title of your blog Put the following code on the page that updates your blog: <?php include("includes/blogPing.php"); echo blogPing($blogUrl,$blogName,'rpc.technorati.com/rpc/ping'); ?> Code (markup):