Archive for the tag 'programming'

Sep 02 2008

Getting Pagerank of Websites through PHP

Published by Gaurav Mishra under programming

Google is today one of the most important website in world wide web, Google search result has become one of the most important services for world wide web users.

A full fledged SEO industry is running on the google pagerank algorithm decided by Google Inc

I have seen a lot of developers asking the method of getting google pageranks and baclinks with the help of php.

The Google search results are ranked by page rank.

We are going to use Php class “Google PR” from Phpclasses.org

Download the Class file from here

<?php

//Include and initiate the class this line tutorial assumes that this code and class are situated in same folder

include_once(“class.googlepr.php”);

//initate a  new object

$rank = new GooglePR();


//Query the pagerank of website

echo “PageRank : ” .$gpr->GetPR(“http://www.mrdbs.com/”) .“\n”;

?>


2 responses so far

Jun 05 2008

Yav — Javascript Validation tool

Published by Gaurav Mishra under programming

I have been following cakephp framework for any new development that i do, But since now and then you come along some fixing work for old scripts.

I hate really fiddling with javascript for cross-browser issues everytime i use them, After starting through frameworks finally i got common sense of not re-inventing wheel again and again and again :D

Firstmost thing that is needed anytime is a form validation tool which is usually a no-brainer for any javscript guy. But using a built framework won`t hurt.

Here comes Yav , A form validation tool . Quick and very effective . Most impressive was it`s inline error messages it`s a piece of cake , look more here http://yav.sourceforge.net/en/gettingstarted.html

Let me know if there are more like this out there.


2 responses so far

FireStats icon Powered by FireStats