<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web-Tool.ws &#187; Backlink</title>
	<atom:link href="http://www.web-tool.ws/category/seo/backlink/feed" rel="self" type="application/rss+xml" />
	<link>http://www.web-tool.ws</link>
	<description>Anything about world wide web</description>
	<lastBuildDate>Tue, 20 Jul 2010 06:22:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>PHP Backlink Checker</title>
		<link>http://www.web-tool.ws/seo/backlink/php-backlink-checker</link>
		<comments>http://www.web-tool.ws/seo/backlink/php-backlink-checker#comments</comments>
		<pubDate>Mon, 19 Jan 2009 01:00:35 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Backlink]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Backlink Checker]]></category>
		<category><![CDATA[php snippets]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=138</guid>
		<description><![CDATA[This function is usefull for peoples with a link directory where the links are stored inside a (MySQL) database. The PHP script is easy to use to find out if a reciprocal link still exists on the corresponding webpage. It takes care about the trailing slash in urls and can be used with (almost) every [...]]]></description>
			<content:encoded><![CDATA[This function is usefull for peoples with a link directory where the links are stored inside a (MySQL) database. The PHP script is easy to use to find out if a reciprocal link still exists on the corresponding webpage. It takes care about the trailing slash in urls and can be used with (almost) every url. Inside the function is a check against a regular expression pattern and the result is a simple boolean.

CODE from: http://www.finalwebsites.com
<div style="clear: both;">
<div class="php" style="font-family: monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">function</span> check_back_link<span style="color: #66cc66;">(</span><span style="color: #0000ff;">$remote_url</span>, <span style="color: #0000ff;">$your_link</span><span style="color: #66cc66;">)</span> <span style="color: #66cc66;">{</span>
<span style="color: #0000ff;">$match_pattern</span> = <a href="http://www.php.net/preg_quote"><span style="color: #000066;">preg_quote</span></a><span style="color: #66cc66;">(</span><a href="http://www.php.net/rtrim"><span style="color: #000066;">rtrim</span></a><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$your_link</span>, <span style="color: #ff0000;">&#8220;/&#8221;</span><span style="color: #66cc66;">)</span>, <span style="color: #ff0000;">&#8220;/&#8221;</span><span style="color: #66cc66;">)</span>;
<span style="color: #0000ff;">$found</span> = <span style="color: #000000; font-weight: bold;">false</span>;
<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">(</span><span style="color: #0000ff;">$handle</span> = @<a href="http://www.php.net/fopen"><span style="color: #000066;">fopen</span></a><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$remote_url</span>, <span style="color: #ff0000;">&#8220;r&#8221;</span><span style="color: #66cc66;">)</span><span style="color: #66cc66;">)</span> <span style="color: #66cc66;">{</span>
<span style="color: #b1b100;">while</span> <span style="color: #66cc66;">(</span>!<a href="http://www.php.net/feof"><span style="color: #000066;">feof</span></a><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$handle</span><span style="color: #66cc66;">)</span><span style="color: #66cc66;">)</span> <span style="color: #66cc66;">{</span>
<span style="color: #0000ff;">$part</span> = <a href="http://www.php.net/fread"><span style="color: #000066;">fread</span></a><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$handle</span>, <span style="color: #cc66cc;">1024</span><span style="color: #66cc66;">)</span>;
<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">(</span><a href="http://www.php.net/preg_match"><span style="color: #000066;">preg_match</span></a><span style="color: #66cc66;">(</span><span style="color: #ff0000;">&#8220;/&lt;a(.*)href=[<span style="color: #000099; font-weight: bold;">\"</span>']&#8220;</span>.<span style="color: #0000ff;">$match_pattern</span>.
<span style="color: #ff0000;">&#8220;(<span style="color: #000099; font-weight: bold;">\/</span>?)[<span style="color: #000099; font-weight: bold;">\"</span>'](.*)&gt;(.*)&lt;<span style="color: #000099; font-weight: bold;">\/</span>a&gt;/&#8221;</span>, <span style="color: #0000ff;">$part</span><span style="color: #66cc66;">)</span><span style="color: #66cc66;">)</span> <span style="color: #66cc66;">{</span>
<span style="color: #0000ff;">$found</span> = <span style="color: #000000; font-weight: bold;">true</span>;
<span style="color: #b1b100;">break</span>;
<span style="color: #66cc66;">}</span>
<span style="color: #66cc66;">}</span>
<a href="http://www.php.net/fclose"><span style="color: #000066;">fclose</span></a><span style="color: #66cc66;">(</span><span style="color: #0000ff;">$handle</span><span style="color: #66cc66;">)</span>;
<span style="color: #66cc66;">}</span>
<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">$found</span>;
<span style="color: #66cc66;">}</span>
<span style="color: #808080; font-style: italic;">// example:</span>
<span style="color: #808080; font-style: italic;">//if (check_back_link(&#8220;http://www.web-tool.ws&#8221;, &#8220;http://www.fixwordpress.net&#8221;)) echo &#8220;link exists&#8221;;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></div>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/backlink/php-backlink-checker/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Pagerank Checker</title>
		<link>http://www.web-tool.ws/featured/google-pagerank-checker</link>
		<comments>http://www.web-tool.ws/featured/google-pagerank-checker#comments</comments>
		<pubDate>Fri, 05 Dec 2008 17:03:30 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Backlink]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Page Rank]]></category>
		<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[Google PageRank]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[pagerank checker]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=186</guid>
		<description><![CDATA[This will give you accurate google pagerank! http://www.web-tool.ws Ex. http://www.yourwebsite.com or http://yourwebsite.com]]></description>
			<content:encoded><![CDATA[This will give you accurate google pagerank!
<div style=" padding:0px; margin:0px;">
<div style="float:left; padding:5px; margin:0px;"> 
<SCRIPT type="text/javascript" language="JavaScript" src="http://xslt.alexa.com/site_stats/js/s/a?url=http://www.web-tool.ws"></SCRIPT>
</div>
<div style="float:left; padding:5px; margin:0px;">
<img  style="border:none; padding:0px; margin:0px;" src="http://www.web-tool.ws/wp-content/plugins/genpr/pr/pr-1.jpg" alt="PageRank 1" />
</div>

<p><br /><span>http://www.web-tool.ws</span><br /><img src="http://www.google.com/images/pos.gif" width=10 height=10 border=0 alt="PageRank: 1/10"><img src="http://www.google.com/images/neg.gif" width=90 height=10 border=0 alt="PageRank: 1/10"></p>
</div>	
<div style="clear:both; padding:0px; margin:0px;"></div><form   action="" method="post"><input style="border:solid 1px #eee; width:300px; margin-right:10px; vertical-align: middle;" name="url" type="text" value="http://"><input  type="submit" name="Submit" value="Check Pagerank from Google"></form><br><p>Ex. http://www.yourwebsite.com or http://yourwebsite.com</p>]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/featured/google-pagerank-checker/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Backlinks</title>
		<link>http://www.web-tool.ws/seo/backlink/backlinks</link>
		<comments>http://www.web-tool.ws/seo/backlink/backlinks#comments</comments>
		<pubDate>Tue, 29 Apr 2008 13:34:41 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Backlink]]></category>
		<category><![CDATA[Backlinks are incoming links to a web page or website]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=83</guid>
		<description><![CDATA[Backlinks are also known as incoming links, inbound links, inlinks, and inward links. Backlinks are incoming links to a web page or website. The number of backlinks is an indication of the popularity or importance of that website or page.In basic link terminology, a backlink is any link received by a web node (web page, [...]]]></description>
			<content:encoded><![CDATA[Backlinks are also known as incoming links, inbound links, inlinks, and inward links.
Backlinks are incoming links to a web page or website. The number of backlinks is an indication of the popularity or importance of that website or page.In basic link terminology, a backlink is any link received by a web node (web page, directory, website, or top level domain) from another web node.

*
A Web node allows you to define collections of web providers (web         nodes). You can either chose the providers yourself or select from         the provider registry of a Portal.]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/backlink/backlinks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo Badge</title>
		<link>http://www.web-tool.ws/seo/backlink/yahoo-badge</link>
		<comments>http://www.web-tool.ws/seo/backlink/yahoo-badge#comments</comments>
		<pubDate>Wed, 20 Feb 2008 06:51:25 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Backlink]]></category>
		<category><![CDATA[yahoo backlink]]></category>
		<category><![CDATA[yahoo backlink ckecker]]></category>
		<category><![CDATA[Yahoo Badge]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/web-tools/yahoo-badge</guid>
		<description><![CDATA[Add a live Yahoo Badge to your blog or website that queries Site Explorer for the number of links to your site or page on the web. Select the type of link counts you want, the size and look of the badge and then cut and paste the code to your web site.]]></description>
			<content:encoded><![CDATA[Add a live Yahoo Badge to your blog or website that queries Site Explorer for the number of links to your site or page on the web. Select the type of link counts you want, the size and look of the badge and then cut and paste the code to your web site.
<iframe src="https://siteexplorer.search.yahoo.com/badge" title="YAHOO badge" align="top" height="800" width="525"></iframe>]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/backlink/yahoo-badge/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
