PHP Classes

File: example.php

Recommend this page to a friend!
  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: 15 years ago
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();
?>