Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Er. Rochak Chauhan  >  PHP Keyword Analyser  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example Script
Class: PHP Keyword Analyser
Find out how a site ranks in Google for a keyword
Author: By
Last change:
Date: 2009-03-03 06:14
Size: 417 bytes
 

Contents

Class file image Download
<?php 
$keyword
="Innovation Par Excellence";
$website="openid.dmwtechnologies.com";

// optional for accepting parameters from Query string
if(isset($_GET['keyword'])) { $keyword=$_GET['keyword']; }
if(isset(
$_GET['website'])) { $website=$_GET['website']; }

require_once(
"PhpKeywordAnalyser.inc.php");
$phpKeywordAnalyser = new PhpKeywordAnalyser($keyword$website);
$phpKeywordAnalyser->initSpider();
?>