Used on my ex toplist TinyTop.Mobi, now its yours Enjoy
Full Seo Tools
Collapse
X
-
Originally posted by redrdx View Posthow i use this ?????? on my wapsite there is a seo.php file
PHP Code:<?php
include....;
?>It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ â“â“¡â“” â“ⓑⓛⓔ ⓣⓞ â“—â“”â“â“¡ !
ιη тнєσÑу, тнє ÏÑα¢тι¢є ιѕ α Ñєѕυℓт σƒ тнє тнєσÑу, вυт ιη ÏÑα¢тι¢є ιѕ тнє σÏÏσѕιтє.
Comment
-
LAST UPDATE, THIS ITS THE ONLY FUNCTIONS THAT WILL WORK
PHP Code:function google_cache( $url ) {
$data = curl( "http://webcache.googleusercontent.com/search?q=cache:" . urlencode( $url ) ) ;
preg_match( '#(\d{1,2}\s[a-zA-Z]{3}\s\d{4}\s\d{2}:\d{2}:\d{2}.*?)\.#', $data, $match ) ;
return $match[1] ;
}
###################
function google_indexed( $url ) {
$data = curl( "http://www.google.com/search?q=site:" . urlencode( $url ) ) ;
preg_match( '#About\s([0-9\,]+){1,}\sresult#', $data, $match ) ;
return $match[1] ;
}
###################
function google_backlinks( $url ) {
$data = curl( "http://www.google.com/search?q=link:" . urlencode( $url ) ) ;
preg_match( '#<div id=resultStats>([0-9\,]+){1,}\sresult#', $data, $match ) ;
return $match[1] ;
}
###################
function yahoo_indexed( $url ) {
$data = curl( "http://siteexplorer.search.yahoo.com/search?bwm=i&bwmf=s&p=" . urlencode( $url ) ) ;
preg_match( '#Inlinks\s\(([0-9\,]+){1,}\)<\/span>#', $data, $match ) ;
return $match[1] ;
}
###################
function yahoo_backlinks( $url ) {
$data = curl( "http://siteexplorer.search.yahoo.com/search?bwm=i&p=" . urlencode( $url ) ) ;
preg_match( '#Inlinks\s\(([0-9\,]+){1,}\)<\/span>#', $data, $match ) ;
return $match[1] ;
}
###################
function bing_indexed( $url ) {
$data = curl( "http://www.bing.com/search?q=site:" . urlencode( $url ) ) ;
preg_match( '#of\s([0-9\,]+){1,}\sresult#', $data, $match ) ;
return $match[1] ;
}
###################
function bing_backlinks( $url ) {
$data = curl( "http://www.bing.com/search?q=link:" . urlencode( $url ) ) ;
preg_match( '#of\s([0-9\,]+){1,}\sresult#', $data, $match ) ;
return $match[1] ;
}
###################
function alexa_backlinks( $url ) {
$data = curl( "http://www.alexa.com/search?q=" . urlencode( $url ) ) ;
preg_match( '#href=\"/site/linksin/' . urlencode( $url ) . '\">([0-9\,]+){1,}<\/a>#', $data, $match ) ;
return $match[1] ;
}
###################
function alexa_rank( $url ) {
$data = curl( "http://www.alexa.com/search?q=" . urlencode( $url ) ) ;
preg_match( '#trafficstats\">\s([0-9\,]+){1,}<\/a>#', $data, $match ) ;
return $match[1] ;
}
###################
function compete_rank( $url ) {
$data = curl( "http://siteanalytics.compete.com/" . urlencode( $url ) . "/" ) ;
preg_match( '#<h4>([0-9\,]+){1,}</h4>#', $data, $match ) ;
return $match[1] ;
}
###################
function internet_archive( $url ) {
$data = curl( "http://wayback.archive.org/web/*/" . urlencode( $url ) ) ;
preg_match( '#crawled\s<strong>([0-9\,]+){1,}\stime#', $data, $match ) ;
return $match[1] ;
}
###################
function w3c_validator( $url ) {
$data = curl( "http://validator.w3.org/check?uri=" . urlencode( $url ) ) ;
preg_match( '#valid\">([^\"]*)<\/td>#', $data, $match ) ;
return $match[1] ;
}
###################
function whois_domain( $url ) {
$data = curl( "http://www.who.is/whois/" . urlencode( $url ) ) ;
preg_match( "#accent1\'>Updated:\s([^\"]*)<\/span><br>#", $data, $match ) ;
return $match[1] ;
}
www.inbuzunar.mobi - Your mobile portal pocket
Comment
Comment