PHP Classes

File: example.php

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