Dynadot โ€” .com Registration $8.99

Some scripts I need..

Spacemail by SpaceshipSpacemail by Spaceship
Watch
Impact
19
Hey
i need some scripts...free...n if u can find tutorials 2 make these scripts it will be better

1. Domain whois
2. Backlinks and stuff like that
3. PR check
4. HTML code viewer [enter a website and it shows u the code of it..]
THANKS
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
AfternicAfternic
I hope someone is kind enough and yeah not too busy to help you with these man...
 
0
•••
0
•••
4) ... Right Click (Or Click on View up top) > View Source?????
 
0
•••
i only know of 1 html code viewer on a site and its not available for download.

@gamex why do people always say this, obviously he wants to offer it to more people, this is blocked on some places you know...
 
0
•••
html viewer? u mean like viewing the source
 
0
•••
yes, he wants that but in a script he can put on a site.
 
0
•••
yea like viewhtml.net

Backlinks and stuff like that:
You enter in a domain and it tells u how many websites are backlinking you..

Fewski said:
Domain WhoIS:
http://www.finalwebsites.com/snippets.php?id=13

PR Check:
http://www.singerdesign.com/page-rank-tool.php

HTML Code Viewer:
Thats more of a program. I've never seen nor heard of one.

Backlinks and stuff like that:
I don't understand the script you are needing, please explain. :)

Nopes
The domain whois that you gave me just tellls if the domain is registered or not..i was looking for a domain WHOIS that tells the domain information like whois.sc etc..

the pr check is not what i want either..i need a script that i can put on my website so pplz can come to my website n check their PR
 
0
•••
http://www.googlecommunity.com/scripts/google-pagerank.php
http://www.hotscripts.com/PHP/Scripts_and_Programs/Networking_Tools/Whois/ (lots of whois scripts there)

html viewer:

PHP:
<?PHP
$url = "http://namepros.com";
$file = file_get_contents($url);
print("<textarea rows=8 cols=38>$file</textarea>");
?>
If you have basic understanding of php and html you can make it have a form im sure...

As for back links:

PHP:
class keyword_pop 
{ 
	function keyword_pop()
	{
		if($_GET[query]!="")
		{
			$this->population_form($_GET[query]);
			$this->get_population($_GET[query]);
		}
		else
		{
			$this->population_form();
		}
	}
	function get_population($keyword)
	{
		$tmp = explode(",", $keyword);
		print("
		<table align=\"center\" cellspacing=\"0\" border=\"1\">
		<tr>
			<td>#</td>
			<td>Keyword</td>
			<td>Google</td>
			<td>MSN</td>
			<td>Yahoo</td>
			<td>Overture</td>
		</tr>
		");
		if(count($tmp) > 1)
		{
			$i = 0;
			foreach($tmp AS $term)
			{
				$i++;
				$term = $this->fixkeyword($term);
 				$google = $this->google($term); 
 				$msn = $this->msn($term); 
 				$yahoo = $this->yahoo($term); 
 				$overture = $this->overture($term); 
 				$term = $this->unfixkeyword($term); 		
 				print("
 				<tr>
					<td>$i</td>
					<td>$term</td>
					<td>$google</td>
					<td>$msn</td>
					<td>$yahoo</td>
					<td>$overture</td>
				</tr>");	
			}
		}
		else
		{
			$term = $this->fixkeyword($keyword);
 			$google = $this->google($term); 
 			$msn = $this->msn($term); 
 			$yahoo = $this->yahoo($term); 
 			$overture = $this->overture($term); 
 			$term = $this->unfixkeyword($term); 
 			print("
 			<tr>
				<td>1</td>
				<td>$term</td>
				<td>$google</td>
				<td>$msn</td>
				<td>$yahoo</td>
				<td>$overture</td>
			</tr>");	
		}
		print("</table>");
	
	}
	function population_form($query = "")
	{
		global $_SERVER;
		print("
		<p>Seperate each keyword with a comma.</p>
		<form action=\"$_SERVER[PHP_SELF]\" method=\"GET\">
		Keyword(s): <input type=\"text\" name=\"query\" value=\"$query\" /> <input type=\"submit\" name=\"submit\" value=\"Get Keyword Population\" />
		</form>
		");
	}
	function google($keyword) 
	{ 
		$data = file_get_contents("http://www.google.com/search?hl=en&q=$keyword&btnG=Google+Search"); 
		$regexp = '!<b>(.*?)<\/b>!s'; 
		$arrPages = array(); 
		preg_match_all($regexp,$data,$arrPages,PREG_PATTERN_ORDER); 
		$data = $arrPages[0][5]; 
        if($data == "") 
        { 
            $data = "0"; 
        } 
        return(strip_tags($data)); 
	} 
	function msn($keyword) 
	{ 
		$data = file_get_contents("http://search.msn.com/results.aspx?q=$keyword&FORM=MSNH&srch_type=0"); 
        $regexp = '!<h5>(.*?)<\/h5>!s'; 
        $arrPages = array(); 
        preg_match_all($regexp,$data,$arrPages,PREG_PATTERN_ORDER); 
        $data = $arrPages[0][0]; 
        $tmp = explode(" ",$data); 
        $data = $tmp[3]; 
        if($data == "") 
        { 
            $data = "0"; 
        } 
        return(strip_tags($data));  
	} 
	function yahoo($keyword) 
	{ 
		$data = file_get_contents("http://search.yahoo.com/search?p=$keyword&sm=Yahoo%21+Search&fr=FP-tab-web-t&toggle=1&cop=&ei=UTF-8"); 
        $regexp = '!<strong>(.*?)<\/strong>!s'; 
        $arrPages = array(); 
        preg_match_all($regexp,$data,$arrPages,PREG_PATTERN_ORDER); 
        $data = $arrPages[0][2]; 
        if($data == "") 
        { 
            $data = "0"; 
        } 
		return(strip_tags($data)); 
	}
	function overture($keyword) 
	{ 
        $data = file_get_contents("http://inventory.overture.com/d/searchinventory/suggestion/?term=$keyword"); 
        $regexp = '!<td>(.*?)<\/td>!s'; 
        $arrPages = array(); 
        preg_match_all($regexp,$data,$arrPages,PREG_PATTERN_ORDER); 
           $data = $arrPages[0][0]; 
        if($data == "") 
        { 
            $data = "0"; 
        }
        $data = strip_tags($data); 
        $data = str_replace("ย ", "", $data); 
		return(number_format($data)); 
	}
	function fixkeyword($keyword)
	{
		return(str_replace(" ", "+", $keyword));
	}
	function unfixkeyword($keyword)
	{
		return(str_replace("+", " ", $keyword));
	}
}
$new = new keyword_pop();

This can be used to make it a keyword application...

Search engines go like this as the query to get backlinks:

Code:
link:www.namepros.com

MY class is above... dont say you made it, cause you didnt, i did.

Cody

Rep please.
 
1
•••
OMG
thanks soooo much
i cant give u rep points cuz it says


You must spread some Reputation around before giving it to axilant again.


buh i m going to drop some NP$ for ur help..thanks again
 
0
•••
HTML source viewer in one PHP line... Assume the page you want to see is http:www.aol.com

<?echo(htmlspecialchars(file_get_contents('http://www.aol.com'),ENT_QUOTES));?>
 
0
•••
okie thanks:D
 
0
•••
Appraise.net
Unstoppable Domains
Domain Recover
DomainEasy โ€” Payment Flexibility
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back