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 Trev Tune  >  Smart PHP SEO Tools  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example
Class: Smart PHP SEO Tools
Generate a report of SEO factors about a Web site
Author: By
Last change: Addressed a bug
Date: 2013-12-19 06:22
Size: 247 bytes
 

Contents

Class file image Download
<?php
if(!isset($_POST['url']))
{
echo 
'<form method="post" action="">
URL: <input type="text" name="url"/>
<input type="submit" value="Go"/>'
;
die();
}
include 
'smartSEO.php';

$seo=new smartSEO($_POST['url']);

$seo->getreport();