PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Sandeep Kumar   SEO Title   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: example file
Class: SEO Title
Analyze and report problems in page titles
Author: By
Last change:
Date: 14 years ago
Size: 791 bytes
 

Contents

Class file image Download
<?php
include_once('seoTitle.php');
if(isset(
$_POST['check_title']))
{
           
$res=array();
           
$meta=New Seo_Title;
           
$url=$_REQUEST['url'];
            if(
$url)
            {
           
// show result
           
$result=$meta->seoTitle($url);
            echo
"<label>".$result['titleText']."</label>";
            echo
"<br>";
            echo
"<label style='color:red'> Result :".$result['title']."</label>";
            exit;
            }
}



   
?>
<form name="dd" action="" method="post"><form action="" method="post" >
        <div class="border">
        </div>
        <h1><strong></strong> </h1>
              <span class="left">Enter Url:</span>
            <input class="left input_text" type="text" name="url" id="url" title=" " value="" />
            <input class="right input_button" type="submit" name="check_title" value="" />
    </div>
</form>