Free file hosting, free video sharing

<<< The Web Hosting >>>


Go Back   Noeman GSM > Webhosting & Website development > Website development > Programming

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-13-2007, 05:12 PM
Spiral's Avatar
CO-Admin
 
Join Date: Sep 2004
Location: Martil
Age: 25
Posts: 16,412
Reputation: 24889
Spiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super Member
Default Google link popularity checker

Are you looking for snipet or script how those link popularity site checker do that? Here is a snipet from my script which I use to check link popularity…

This snipet is the link popularity checker it self but you can make this script more powerful.

After uploading this script in your php enabled server, you can then check link popularity by typing
Code:
www.yoursite.com/linkpo.php
Code:
<?php
$url = trim($_GET[urls]); //if from form replace $_GET with $_POST

echo “<tr><th colspan = 3 align=center><font color=white><b>Google </b></font></th> </tr>
<tr>
<th>
<font size = 2 face=verdana color=white>URL</font> </th>
<th>
<font size = 2 face=verdana color = white>Links</font> </th>
<th>
<font size = 2 face=verdana color=white>View</font> </th>
</tr>”;

if ($url != “”){

$domain=$url

$path=”http://www.google.com/search?hl=en&lr=&ie=UTF-8&q=link%3A”.$domain;
$data = strtolower(strip_tags(implode(”", file($path))));
$data = substr($data, strpos($data, “of about”)+9, strlen($data));
$data = substr($data, 0, strpos($data, ” “));

if(eregi(”[[:alpha:]]”, $data)) {
$data = 0;
}

echo ” <tr>
<td> <font size = 2 face=verdana color=white> $domain </td>
<td> <font size = 2 face=verdana color=white> $data </td>
<td> <a href =’$path’>View</a></td> </tr>”; 

}

?>
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 10-07-2008, 09:53 AM
Membre
 
Join Date: Oct 2008
Age: 22
Posts: 15
Reputation: 10
wikky is on a distinguished road
Default

good collection..thank you
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 12:37 PM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
Copyright © 2004-2008 Noeman . All rights reserved
Loans | Nissan Armada Forum | Buy PSP | Plow and Hearth Coupons | Cell Phones

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112