<?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</title>
	<atom:link href="http://www.web-tool.ws/feed" rel="self" type="application/rss+xml" />
	<link>http://www.web-tool.ws</link>
	<description>Anything about world wide web</description>
	<lastBuildDate>Mon, 19 Jan 2009 01:00:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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[<p>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.</p>
<p>CODE from: http://www.finalwebsites.com</p>
<div style="clear: both;">
<div class="php" style="font-family: monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span><br />
<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><br />
<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>;<br />
<span style="color: #0000ff;">$found</span> = <span style="color: #000000; font-weight: bold;">false</span>;<br />
<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><br />
<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><br />
<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>;<br />
<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>.<br />
<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><br />
<span style="color: #0000ff;">$found</span> = <span style="color: #000000; font-weight: bold;">true</span>;<br />
<span style="color: #b1b100;">break</span>;<br />
<span style="color: #66cc66;">}</span><br />
<span style="color: #66cc66;">}</span><br />
<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>;<br />
<span style="color: #66cc66;">}</span><br />
<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">$found</span>;<br />
<span style="color: #66cc66;">}</span><br />
<span style="color: #808080; font-style: italic;">// example:</span><br />
<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><br />
<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>Add your URL to Google</title>
		<link>http://www.web-tool.ws/seo/submit-link/add-your-url-to-google</link>
		<comments>http://www.web-tool.ws/seo/submit-link/add-your-url-to-google#comments</comments>
		<pubDate>Sun, 18 Jan 2009 08:21:08 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[AddUrl]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Submit Link]]></category>
		<category><![CDATA[Add your URL]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=227</guid>
		<description><![CDATA[Share your place on the net with Google.

Share your place on the net with Google.
Google AddUrl

]]></description>
			<content:encoded><![CDATA[<p>Share your place on the net with Google.</p>
<p><iframe src ="http://www.google.com/addurl/" width="100%" height="600px"></p>
<p>Share your place on the net with Google.</p>
<p><a href="http://www.google.com/addurl/" title="Add your URL to Google">Google AddUrl</a><br />
</iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/submit-link/add-your-url-to-google/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Check your Ubuntu version</title>
		<link>http://www.web-tool.ws/linux/ubuntu/check-your-ubuntu-version</link>
		<comments>http://www.web-tool.ws/linux/ubuntu/check-your-ubuntu-version#comments</comments>
		<pubDate>Sat, 17 Jan 2009 14:06:29 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu version]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=220</guid>
		<description><![CDATA[To check your Ubuntu version, you just need to type the following command at a terminal window.
lsb_release -a
Terminal Command line Sample
Your-laptop:~$ lsb_release -a
No LSB modules are available.
Distributor ID:	Ubuntu
Description:	Ubuntu 8.04
Release:	8.04
Codename:	hardy
]]></description>
			<content:encoded><![CDATA[<p>To check your Ubuntu version, you just need to type the following command at a terminal window.</p>
<h1>lsb_release -a</h1>
<p>Terminal Command line Sample<br />
Your-laptop:~$ lsb_release -a<br />
No LSB modules are available.<br />
Distributor ID:	Ubuntu<br />
Description:	Ubuntu 8.04<br />
Release:	8.04<br />
Codename:	hardy</p>
]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/linux/ubuntu/check-your-ubuntu-version/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Pagerank Factors</title>
		<link>http://www.web-tool.ws/seo/google-pagerank-factors</link>
		<comments>http://www.web-tool.ws/seo/google-pagerank-factors#comments</comments>
		<pubDate>Sun, 07 Dec 2008 05:10:34 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[Pagerank Factors]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=190</guid>
		<description><![CDATA[Factors that can increase your Google PageRank
Now the Google PageRank algorithm can be very complexed, but yet friendly invention. Here is a list of things that could help boost you Google PageRank, with a rating scale beside it of how important we think it is.
* Update Pages Frequently 2/10
* Add Pages Frequently 4/10
* Good Neighborhood [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Factors that can increase your Google PageRank</strong></p>
<p>Now the Google PageRank algorithm can be very complexed, but yet friendly invention. Here is a list of things that could help boost you Google PageRank, with a rating scale beside it of how important we think it is.</p>
<p>* Update Pages Frequently 2/10<br />
* Add Pages Frequently 4/10<br />
* Good Neighborhood Directories with high PageRank Levels 7/10<br />
* Monster Websites 7/10<br />
* Quality Inbound links 8/10<br />
* Quality Relevant Links 9/10<br />
* No Broken Links 5/10<br />
* Article Submissions (this can increase your PageRank by getting more inbound links)<br />
* All these put together 10/10</p>
<p><strong>Factors that can decrease your Google PageRank</strong></p>
<p>* Bad inbound links such as Poker, Porn, Sex, Drugs, or anything to that nature<br />
* Link spamming<br />
* Bad Content<br />
* Lots of broken links<br />
* SEO Black Hat Techniques</p>
<p>Try our <a title="google page rank checker" href="http://www.web-tool.ws/web-tools/google-pagerank-checker">Google PageRank Checker</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/google-pagerank-factors/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How many links do you need to get a certain Google Pagerank?</title>
		<link>http://www.web-tool.ws/web-tools/how-many-links-do-you-need-to-get-a-certain-google-pagerank</link>
		<comments>http://www.web-tool.ws/web-tools/how-many-links-do-you-need-to-get-a-certain-google-pagerank#comments</comments>
		<pubDate>Sun, 07 Dec 2008 04:59:45 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[PageRank]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=188</guid>
		<description><![CDATA[Although nobody knows the exact Google PageRank values the table below  gives a fairly good representation of how many external links, of  certain PageRank values, are required to achieve a certain Google  PageRank.







PR

To Get PR3

To Get PR4

To Get PR5

To Get PR6

To Get PR7

To Get PR8







1

555

3,000

17,000

93,000

508,000

2,800,000







2

101

555

3,000

17,000

93,000

508,000







3

19

101

555

3,000

17,000

93,000







4

4

19

101

555

3,000

170,000







5

1

4

19

101

555

3,000







6

1

1

4

19

101

555







7

1

1

1

4

19

101







8

1

1

1

1

4

19







9

1

1

1

1

1

4







10

1

1

1

1

1

1




]]></description>
			<content:encoded><![CDATA[<p>Although nobody knows the exact Google PageRank values the table below  gives a fairly good representation of how many external links, of  certain PageRank values, are required to achieve a certain Google  PageRank.</p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td colspan="18" height="1" bgcolor="#999999"></td>
</tr>
<tr>
<td width="1" height="26" bgcolor="#999999"></td>
<td width="80" align="center" bgcolor="#e4edf8">PR</td>
<td width="1" bgcolor="#999999"></td>
<td width="80" align="center" bgcolor="#e4edf8">To Get PR3</td>
<td width="1" bgcolor="#999999"></td>
<td width="80" align="center" bgcolor="#e4edf8">To Get PR4</td>
<td width="1" bgcolor="#999999"></td>
<td width="80" align="center" bgcolor="#e4edf8">To Get PR5</td>
<td width="1" bgcolor="#999999"></td>
<td width="80" align="center" bgcolor="#e4edf8">To Get PR6</td>
<td width="1" bgcolor="#999999"></td>
<td width="80" align="center" bgcolor="#e4edf8">To Get PR7</td>
<td width="1" bgcolor="#999999"></td>
<td width="80" align="center" bgcolor="#e4edf8">To Get PR8</td>
<td width="1" bgcolor="#999999"></td>
</tr>
<tr>
<td colspan="18" height="1" bgcolor="#999999"></td>
</tr>
<tr>
<td width="1" height="26" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">555</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">3,000</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">17,000</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">93,000</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">508,000</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">2,800,000</td>
<td width="1" bgcolor="#999999"></td>
</tr>
<tr>
<td colspan="18" height="1" bgcolor="#999999"></td>
</tr>
<tr>
<td width="1" height="26" bgcolor="#999999"></td>
<td align="center">2</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">101</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">555</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">3,000</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">17,000</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">93,000</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">508,000</td>
<td width="1" bgcolor="#999999"></td>
</tr>
<tr>
<td colspan="18" height="1" bgcolor="#999999"></td>
</tr>
<tr>
<td width="1" height="26" bgcolor="#999999"></td>
<td align="center">3</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">19</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">101</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">555</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">3,000</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">17,000</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">93,000</td>
<td width="1" bgcolor="#999999"></td>
</tr>
<tr>
<td colspan="18" height="1" bgcolor="#999999"></td>
</tr>
<tr>
<td width="1" height="26" bgcolor="#999999"></td>
<td align="center">4</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">4</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">19</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">101</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">555</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">3,000</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">170,000</td>
<td width="1" bgcolor="#999999"></td>
</tr>
<tr>
<td colspan="18" height="1" bgcolor="#999999"></td>
</tr>
<tr>
<td width="1" height="26" bgcolor="#999999"></td>
<td align="center">5</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">4</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">19</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">101</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">555</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">3,000</td>
<td width="1" bgcolor="#999999"></td>
</tr>
<tr>
<td colspan="18" height="1" bgcolor="#999999"></td>
</tr>
<tr>
<td width="1" height="26" bgcolor="#999999"></td>
<td align="center">6</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">4</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">19</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">101</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">555</td>
<td width="1" bgcolor="#999999"></td>
</tr>
<tr>
<td colspan="18" height="1" bgcolor="#999999"></td>
</tr>
<tr>
<td width="1" height="26" bgcolor="#999999"></td>
<td align="center">7</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">4</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">19</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">101</td>
<td width="1" bgcolor="#999999"></td>
</tr>
<tr>
<td colspan="18" height="1" bgcolor="#999999"></td>
</tr>
<tr>
<td width="1" height="26" bgcolor="#999999"></td>
<td align="center">8</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">4</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">19</td>
<td width="1" bgcolor="#999999"></td>
</tr>
<tr>
<td colspan="18" height="1" bgcolor="#999999"></td>
</tr>
<tr>
<td width="1" height="26" bgcolor="#999999"></td>
<td align="center">9</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">4</td>
<td width="1" bgcolor="#999999"></td>
</tr>
<tr>
<td colspan="18" height="1" bgcolor="#999999"></td>
</tr>
<tr>
<td width="1" height="26" bgcolor="#999999"></td>
<td align="center">10</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
<td align="center">1</td>
<td width="1" bgcolor="#999999"></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/web-tools/how-many-links-do-you-need-to-get-a-certain-google-pagerank/feed</wfw:commentRss>
		<slash:comments>5</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[<p>This will give you accurate google pagerank!<br />
<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-2.jpg" alt="PageRank 2" />
</div>

<p><br /><span>http://www.web-tool.ws</span><br /><img src="http://www.google.com/images/pos.gif" width=20 height=10 border=0 alt="PageRank: 2/10"><img src="http://www.google.com/images/neg.gif" width=80 height=10 border=0 alt="PageRank: 2/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></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>I Want To Develop My Own Website</title>
		<link>http://www.web-tool.ws/web-tools/i-want-to-develop-my-own-website</link>
		<comments>http://www.web-tool.ws/web-tools/i-want-to-develop-my-own-website#comments</comments>
		<pubDate>Sun, 12 Oct 2008 06:19:55 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[About the Author]]></category>
		<category><![CDATA[I Want To Develop My Own Website]]></category>
		<category><![CDATA[web-tool.ws]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=158</guid>
		<description><![CDATA[
Writing is my passion. I think I am good at it. I have made significant improvements and gained much from my writing. Let me tell you that in March 2008, I was just a plain and simple writer, with a minimal knowledge of the computer. I could encode excellently and my thoughts just flow and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.web-tool.ws/wp-content/uploads/2008/10/en.jpg"><img class="alignnone size-full wp-image-162" title="en" src="http://www.web-tool.ws/wp-content/uploads/2008/10/en.jpg" alt="" width="500" height="51" /></a><br />
Writing is my passion. I think I am good at it. I have made significant improvements and gained much from my writing. Let me tell you that in March 2008, I was just a plain and simple writer, with a minimal knowledge of the computer. I could encode excellently and my thoughts just flow and well in less than an hour I can come up with a new, original article.</p>
<p>Little had I known that writing successfully entails so much to get to the readers. I was given a chance to work with LARRY NGAOSI and I must say, from that time on, things were never the same with my life. I applied for a writer&#8217;s job for TOM COGHILL on different topics which were all very interesting for me. I love what I was doing. But it was a tedious one to learn the intricacies of how an article would reach the readers and surfers  which are millions and millions of people. Capturing all the bulk of readers is something that intrigued me.</p>
<p>So there i was working and learning from a very young and simple guy, LARRY NGAOSIWhiteLight)(. He would give me instructions and enlightenment to various questions I had running in my mind. Writing is not enough for an article to reach the web. The development is intricate and it is discipline one must absorb. Thanks to the patience of Larry, I have reached a point where in I desire to develop and design my own websites.</p>
<p>I may not be fully equipped at the moment, but I am confident with my learning ability and with the constant and patient teaching of Larry, my dreams of being a writer for several websites is only a few miles away. Web-tools.ws has been my constant source of learning from my ignorance of a simple personal computer. I must say I have achieved much, and I will continue learning more.</p>
<p>Thank you for the motivation dear <a title="About Larry" href="http://www.web-tool.ws/info">Larry</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/web-tools/i-want-to-develop-my-own-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Website</title>
		<link>http://www.web-tool.ws/featured/create-a-website</link>
		<comments>http://www.web-tool.ws/featured/create-a-website#comments</comments>
		<pubDate>Fri, 10 Oct 2008 06:18:24 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Create a Website]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=152</guid>
		<description><![CDATA[Welcome! My name is larry. I&#8217;ve been creating websites since 2007. If you need to create a website, but don&#8217;t know where to start, you&#8217;ve come to the right place!
Here, I explain how to create a website. I also explain how to get your own domain name (eg, www.yourwebsitename.com), and how to host your website [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome! My name is larry. I&#8217;ve been creating websites since 2007. If you need to create a website, but don&#8217;t know where to start, you&#8217;ve come to the right place!</p>
<p>Here, I explain how to create a website. I also explain how to get your own domain name (eg, www.yourwebsitename.com), and how to host your website (make it available to the world).</p>
<p>Creating a website is much easier than you might think. By following these steps, you will be able to create your own website in no time at all!</p>
<p>The Website Creation Process</p>
<p>Now if you didn&#8217;t click on the above link, you are probably curious to know what is involved in making a website. Creating a website basically involves the following 3 steps:</p>
<p>STEP 1 &gt;&gt;<br />
Register a Domain Name<br />
A domain name is the thing that looks like mysite.com. You register these on an annual basis.</p>
<p>Domain names can cost anywhere between $10 and $50 per year. I&#8217;ll show you how to get one for $3.99 (below).</p>
<p>Your domain name represents the URL (or permanent web address) of your website. Therefore, when anyone types in &#8220;yourdomain.com&#8221; or &#8220;www.yourdomain.com&#8221;, they will see your website.</p>
<p>You register your domain name through a domain name registrar or hosting provider. You simply check that your preferred domain name is available, then register it (online).</p>
<p>Domain names are registered on an annual basis, and you can usually register it many years in advance (or set &#8216;auto-renew&#8217;).</p>
<p>Prices can range from between $10 to $15 up to as much as $35 or even $40. Dynadot has some of the best prices on the web &#8211; and if you purchase hosting at the same time, the domain name is even cheaper ($3.99).</p>
<p>If you don&#8217;t have a domain name yet, get your domain name now (before someone else beats you to it!)</p>
<p>STEP 2 &gt;&gt;<br />
Get a Web Host<br />
A web host is a company that enables your website to be viewed by the rest of the world, 24/7.</p>
<p>A web host (or hosting provider), is a company that makes your website available for the world to see. They have the equipment and technical skills to make sure your website is available to the world, 24 hours a day, 7 days a week.</p>
<p>Choose your hosting provider carefully (<a title="Hosting service" href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=jlarry0001">Hostgator </a>or <a title="Hosting service" href="https://secure.hostnine.com/cgi-bin/affiliates/clickthru.cgi?id=jlarry0001&amp;campaign=December_Email">Hostnine</a>)- a good host will have excellent support. A bad host can have almost no support at all! If you&#8217;re new to creating websites, good support can reduce the stress that comes from doing something for the first time.</p>
<p>Also, some web hosts have an online website builder. A good website builder can enable anyone to build a website &#8211; even complete novices.</p>
<p>STEP 3 &gt;&gt;<br />
Build your Website<br />
You can either build it yourself or use a website builder.</p>
<p>The easy way? The easiest way to build a website is to use your web host&#8217;s website builder (assuming they have one).</p>
<p>More Help<br />
Still not sure about how to go about creating a website?<br />
Frequently Asked Questions (FAQs)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/featured/create-a-website/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Landing Page Type: Transactional</title>
		<link>http://www.web-tool.ws/seo/landing-page-type-transactional</link>
		<comments>http://www.web-tool.ws/seo/landing-page-type-transactional#comments</comments>
		<pubDate>Tue, 02 Sep 2008 15:12:54 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Transactional Landing Page]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=125</guid>
		<description><![CDATA[A transactional landing page seeks to persuade a visitor to complete a transaction such as filling out a form or interacting with advertisements or other objects on the landing page, with the goal being the immediate or eventual sale of a product or service. If information is to be captured, the page will usually withhold [...]]]></description>
			<content:encoded><![CDATA[<p>A <strong><em>transactional</em> </strong>landing page seeks to persuade a visitor to complete a transaction such as filling out a form or interacting with advertisements or other objects on the landing page, with the goal being the immediate or eventual sale of a product or service. If information is to be captured, the page will usually withhold information until some minimal amount of visitor information is provided, typically an email address and perhaps a name and telephone number as well – enough to &#8220;capture the lead&#8221; and add the prospect to a mailing list.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/landing-page-type-transactional/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Landing Page (Type: Reference)</title>
		<link>http://www.web-tool.ws/seo/landing-page-type-reference</link>
		<comments>http://www.web-tool.ws/seo/landing-page-type-reference#comments</comments>
		<pubDate>Tue, 02 Sep 2008 15:10:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Reference Landing Page]]></category>

		<guid isPermaLink="false">http://www.web-tool.ws/?p=123</guid>
		<description><![CDATA[A reference landing page presents information that is relevant to the visitor. These can display text, images, dynamic compilations of relevant links, or other elements. Reference landing pages are effective if they meet the objectives of their publishers, which may be associations, organizations or public service entities. For many reference landing pages, effectiveness can be [...]]]></description>
			<content:encoded><![CDATA[<p>A <em>reference</em> landing page presents information that is relevant to the visitor. These can display text, images, dynamic compilations of relevant links, or other elements. Reference landing pages are effective if they meet the objectives of their publishers, which may be associations, organizations or public service entities. For many reference landing pages, effectiveness can be measured by the revenue value of the advertising that is displayed on them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.web-tool.ws/seo/landing-page-type-reference/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
