<?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>Hampshire Web Design Blog &#187; Free Downloads</title>
	<atom:link href="http://www.hants-web.co.uk/Blog/category/free-downloads/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hants-web.co.uk/Blog</link>
	<description>News from Hampshire Web Design</description>
	<lastBuildDate>Mon, 11 Oct 2010 12:07:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Free PHP Contact Form</title>
		<link>http://www.hants-web.co.uk/Blog/free-downloads/free-php-contact-form/</link>
		<comments>http://www.hants-web.co.uk/Blog/free-downloads/free-php-contact-form/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 23:40:58 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Free Downloads]]></category>

		<guid isPermaLink="false">http://www.hants-web.co.uk/Blog/?p=437</guid>
		<description><![CDATA[Thanks to the wonders of PHP and it&#8217;s built in sendmail function its never been easier to code a basic contact form. Follow the instructions below to create a basic contact form or at the bottom of the page there is a direct download link if you want it ready made. Step 1: Using Notepad [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to the wonders of PHP and it&#8217;s built in sendmail function its never been easier to code a basic contact form. Follow the instructions below to create a basic contact form or at the bottom of the page there is a direct download link if you want it ready made.</p>
<p><strong>Step 1:</strong> Using Notepad create a new page and save it as &#8220;contact.php&#8221;.</p>
<p><strong>Step 2:</strong> Copy and paste the following code:</p>
<blockquote><p>&lt;?php //////Free Contact Form by Hampshire Web Design: http://www.hants-web.co.uk/<br />
if ($_POST["email"]&lt;&gt;&#8221;) {<br />
$ToEmail = &#8216;youremail@yourdomain.com&#8217;;<br />
$EmailSubject = &#8216;Site contact form &#8216;;<br />
$mailheader = &#8220;From: &#8220;.$_POST["email"].&#8221;\r\n&#8221;;<br />
$mailheader .= &#8220;Reply-To: &#8220;.$_POST["email"].&#8221;\r\n&#8221;;<br />
$mailheader .= &#8220;Content-type: text/html; charset=iso-8859-1\r\n&#8221;;<br />
$MESSAGE_BODY = &#8220;Name: &#8220;.$_POST["name"].&#8221;&lt;br&gt;&#8221;;<br />
$MESSAGE_BODY .= &#8220;Email: &#8220;.$_POST["email"].&#8221;&lt;br&gt;&#8221;;<br />
$MESSAGE_BODY .= &#8220;Comment: &#8220;.nl2br($_POST["comment"]).&#8221;&lt;br&gt;&#8221;;<br />
mail($ToEmail, $EmailSubject, $MESSAGE_BODY, $mailheader) or die (&#8220;Failure&#8221;);<br />
?&gt;<br />
&lt;p align=&#8221;center&#8221;&gt;Your message has been sent and we will respond within 24 hours.&lt;/p&gt;<br />
&lt;?php<br />
} else {<br />
?&gt;<br />
&lt;form action=&#8221;contact.php&#8221; method=&#8221;post&#8221;&gt;<br />
&lt;table align=&#8221;center&#8221; width=&#8221;600&#8243; border=&#8221;0&#8243; cellspacing=&#8221;2&#8243; cellpadding=&#8221;0&#8243;&gt;<br />
&lt;tr&gt;<br />
&lt;td width=&#8221;29%&#8221; align=&#8221;left&#8221; valign=&#8221;top&#8221;&gt;&lt;strong&gt;Your name:&lt;/strong&gt;&lt;/td&gt;<br />
&lt;td width=&#8221;71%&#8221;&gt;&lt;input name=&#8221;name&#8221; type=&#8221;text&#8221; id=&#8221;name&#8221; size=&#8221;80&#8243;&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td align=&#8221;left&#8221; valign=&#8221;top&#8221;&gt;&lt;strong&gt;Email address:&lt;/strong&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input name=&#8221;email&#8221; type=&#8221;text&#8221; id=&#8221;email&#8221; size=&#8221;80&#8243;&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td align=&#8221;left&#8221; valign=&#8221;top&#8221;&gt;&lt;strong&gt;Comment:&lt;/strong&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;textarea name=&#8221;comment&#8221; cols=&#8221;61&#8243; rows=&#8221;6&#8243; id=&#8221;comment&#8221;&gt;&lt;/textarea&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&amp;nbsp;&lt;/td&gt;<br />
&lt;td align=&#8221;left&#8221; valign=&#8221;top&#8221;&gt;&lt;input type=&#8221;submit&#8221; name=&#8221;Submit&#8221; value=&#8221;Send&#8221;&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/form&gt;<br />
&lt;?php<br />
};<br />
?&gt;</p></blockquote>
<p><strong>Step 3:</strong> Change the Email Address on line 3 &#8220;$ToEmail = &#8216;youremail@yourdomain.com&#8217;; &#8221; to the email address you want the form contents to be sent to.</p>
<p><strong>Step 4:</strong> Save your work and upload contact.php to your server and browse to www.yourdomain.com/contact.php and you should see the image below:</p>
<p><img class="aligncenter" title="Free PHP Contact Form" src="http://www.hants-web.co.uk/images/contact-form.gif" border="0" alt="Free PHP Contact Form" width="590" height="245" /></p>
<p><strong>Thats it!</strong></p>
<p>If you want it ready made then you can download the file from <a title="Download Free PHP Contact Form" href="http://clients.ansuk.co.uk/dl.php?type=d&amp;id=15" onclick="pageTracker._trackPageview('/outgoing/clients.ansuk.co.uk/dl.php?type=d_amp_id=15&amp;referer=');">HERE</a>.</p>
<p>Now im very sorry but we are too busy to answer customisation questions. If you would like to create a more advanced contact form then i would recommend reading some of the free tutorials at <a title="W3Schools Free Web Tutorials" href="http://www.w3schools.com/PHP/DEfaULT.asP" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.w3schools.com/PHP/DEfaULT.asP?referer=');">http://www.w3schools.com/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hants-web.co.uk/Blog/free-downloads/free-php-contact-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search-engine Optimization Starter Guide</title>
		<link>http://www.hants-web.co.uk/Blog/free-downloads/search-engine-optimization-starter-guide/</link>
		<comments>http://www.hants-web.co.uk/Blog/free-downloads/search-engine-optimization-starter-guide/#comments</comments>
		<pubDate>Fri, 22 May 2009 21:27:03 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Free Downloads]]></category>

		<guid isPermaLink="false">http://www.hants-web.co.uk/Blog/?p=355</guid>
		<description><![CDATA[SEO is an essential part of any website and without using it correctly you&#8217;ll never get anywhere in the maze that is Search Engine Rankings. This amazing guide, published by Google covers just about everything you can think of, including: Create unique, accurate page titles Make use of the &#8220;description&#8221; meta tag Improving the structure [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-354 alignnone" title="Search-engine Optimization Starter Guide" src="http://www.hants-web.co.uk/Blog/wp-content/uploads/2009/05/seo.png" alt="Search-engine Optimization Starter Guide" width="450" height="321" /></p>
<p>SEO is an essential part of any website and without using it correctly you&#8217;ll never get anywhere in the maze that is Search Engine Rankings.</p>
<p>This amazing guide, published by Google covers just about everything you can think of, including:</p>
<ul >
<li>Create unique, accurate page titles</li>
<li>Make use of the &#8220;description&#8221; meta tag</li>
<li>Improving the structure of your URLs</li>
<li>Making your site easier to navigate</li>
<li>Offering quality content and services</li>
<li>Writing better anchor text</li>
</ul>
<p>and much more with easy to follow examples and images.</p>
<p>If you are serious about gaining good rankings then you <strong><u>must</u></strong> read this!</p>
<div style="margin-right: 250px; margin-bottom: 20px; text-align: center;"><a class="rm" href="http://www.google.com/webmasters/docs/search-engine-optimization-starter-guide.pdf" onclick="pageTracker._trackPageview('/outgoing/www.google.com/webmasters/docs/search-engine-optimization-starter-guide.pdf?referer=');">Download</a></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hants-web.co.uk/Blog/free-downloads/search-engine-optimization-starter-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tos And Privacy Statement Samples</title>
		<link>http://www.hants-web.co.uk/Blog/free-downloads/tos-and-privacy-statement-samples/</link>
		<comments>http://www.hants-web.co.uk/Blog/free-downloads/tos-and-privacy-statement-samples/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 09:21:15 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Free Downloads]]></category>

		<guid isPermaLink="false">http://www.hants-web.co.uk/Blog/?p=204</guid>
		<description><![CDATA[Every business needs to have a Terms of Service and Privacy Policy statement. These can be very expensive to have written professionally by a Solicitor or other professional. Attached are some samples for these, all you need to do is edit them to add your Company Name where appropriate. Enjoy Download]]></description>
			<content:encoded><![CDATA[<p>Every business needs to have a Terms of Service and Privacy Policy statement. These can be very expensive to have written professionally by a Solicitor or other professional.</p>
<p>Attached are some samples for these, all you need to do is edit them to add your Company Name where appropriate.</p>
<p>Enjoy <img src='http://www.hants-web.co.uk/Blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<div style="margin-right:250px; margin-bottom:20px;"><a class="rm" href="http://clients.ansuk.co.uk/dl.php?type=d&#038;id=9" onclick="pageTracker._trackPageview('/outgoing/clients.ansuk.co.uk/dl.php?type=d_038_id=9&amp;referer=');">Download</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.hants-web.co.uk/Blog/free-downloads/tos-and-privacy-statement-samples/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Disable WordPress WLWMANIFEST.XML Plugin</title>
		<link>http://www.hants-web.co.uk/Blog/free-downloads/disable-wordpress-wlwmanifestxml-plugin/</link>
		<comments>http://www.hants-web.co.uk/Blog/free-downloads/disable-wordpress-wlwmanifestxml-plugin/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 22:22:13 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Free Downloads]]></category>

		<guid isPermaLink="false">http://www.hants-web.co.uk/Blog/?p=192</guid>
		<description><![CDATA[After upgrading our WordPress installation i noticed a new url reference in the source code that didn&#8217;t used to be there called &#8220;wlwmanifest.xml&#8221;. After doing some research it seems the WordPress Dev&#8217;s added this to enable enable tagging support for Windows Live Writer however, as none of us use Windows Live Writer it completely useless [...]]]></description>
			<content:encoded><![CDATA[<p>After upgrading our WordPress installation i noticed a new url reference in the source code that didn&#8217;t used to be there called &#8220;wlwmanifest.xml&#8221;. After doing some research it seems the WordPress Dev&#8217;s added this to enable enable tagging support for Windows Live Writer however, as none of us use Windows Live Writer it completely useless to us.</p>
<p>To remove this you need delve into the php to remove the two references for it but not everyone is comfortable editing php so we&#8217;ve written a very light plugin that will remove this for you.</p>
<p>To install this plugin, simply upload the wlwmanifest-disabler.php file to your /wp-content/plugins directory then navigate in your WordPress Admin to your Plugins area, find the pugin and Activate it.</p>
<p>This will remove the reference from the source code, it really couldn&#8217;t be more simple. Hopefully the WordPress Dev&#8217;s will add this themselves in future releases so users have the option of enabling it or not but until that happens this will do the trick.</p>
<p>Tested on WordPress Versions 2.5, 2.6, 2.7, 2.7.1</p>
<div style="margin-right:250px; margin-bottom:20px;"><a class="rm" href="http://clients.ansuk.co.uk/dl.php?type=d&#038;id=10" onclick="pageTracker._trackPageview('/outgoing/clients.ansuk.co.uk/dl.php?type=d_038_id=10&amp;referer=');">Download</a></div>
<p>&nbsp;</p>
<p>We will do our very best to keep this plugin up to date and will add a new comment when new versions are released but please understand that freebies are not our major priority <img src='http://www.hants-web.co.uk/Blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.hants-web.co.uk/Blog/free-downloads/disable-wordpress-wlwmanifestxml-plugin/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Template 001</title>
		<link>http://www.hants-web.co.uk/Blog/free-downloads/template-001/</link>
		<comments>http://www.hants-web.co.uk/Blog/free-downloads/template-001/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 01:01:46 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Free Downloads]]></category>

		<guid isPermaLink="false">http://www.hants-web.co.uk/Blog/?p=175</guid>
		<description><![CDATA[Template 001 is the perfect template for just starting out. It features red tabbed navigation and a red and silver colour scheme. Valid XHTML &#38; CSS and free for both personal and business use, we only ask that you retain our copyright link in the footer. If you would like to remove our copyright notice [...]]]></description>
			<content:encoded><![CDATA[<p>Template 001 is the perfect template for just starting out. It features red tabbed navigation and a red and silver colour scheme.</p>
<p>Valid XHTML &amp; CSS and free for both personal and business use, we only ask that you retain our copyright link in the footer. If you would like to remove our copyright notice this can be purchased from<br /> <a class="links2" href="http://clients.ansuk.co.uk/cart.php?a=add&amp;pid=14" onclick="pageTracker._trackPageview('/outgoing/clients.ansuk.co.uk/cart.php?a=add_amp_pid=14&amp;referer=');">http://clients.ansuk.co.uk/cart.php?a=add&amp;pid=14</a></p>
<p><img src="http://www.hants-web.co.uk/images/downloads/Template001.jpg" alt="Template 001 Free Template from Hampshire Web Design: www.hants-web.co.uk" />
<p>&nbsp;</p>
<div style="margin-right:250px; margin-bottom:20px;"><a class="rm" href="http://clients.ansuk.co.uk/dl.php?type=d&#038;id=11" onclick="pageTracker._trackPageview('/outgoing/clients.ansuk.co.uk/dl.php?type=d_038_id=11&amp;referer=');">Download</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.hants-web.co.uk/Blog/free-downloads/template-001/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Free Skin for CubeCart Version 3</title>
		<link>http://www.hants-web.co.uk/Blog/free-downloads/free-skin-for-cubecart-version-3/</link>
		<comments>http://www.hants-web.co.uk/Blog/free-downloads/free-skin-for-cubecart-version-3/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 23:37:12 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Free Downloads]]></category>

		<guid isPermaLink="false">http://www.hants-web.co.uk/Blog/?p=123</guid>
		<description><![CDATA[AnsUK Free is a stunning template for CubeCart version 3 with an elegant shades of chocolates and creams this free template will truly make your store stand out from the crowd! Features include: 3 column design New style latest product display Alternating box heading colours in different shades of chocolate and browns Stunning category link [...]]]></description>
			<content:encoded><![CDATA[<p>AnsUK Free is a stunning template for CubeCart version 3 with an elegant shades of chocolates and creams this free template will truly make your store stand out from the crowd!</p>
<p><strong>Features include:</strong></p>
<ul>
<li>3 column design </li>
<li>New style latest product display </li>
<li>Alternating box heading colours in different shades of chocolate and browns </li>
<li>Stunning category link css hovers </li>
<li>Multi linual </li>
<li>Language box removed </li>
</ul>
<p style="color:#FF0000"><strong>IMPORTANT INFORMATION:</strong></p>
<p>You are free to use this template for personal or business use however you must retain our copyright notice at the bottom of each page and you cannot redistribute this template without prior written permission from us. This template is only available directly from us or from CubeCartSkins. If you find this template available at any other website please contact us. If we find any other website distributing this template then we will take legal action against the website and the hosting provider under the DCMA Act.</p>
<p>If you attempt to delete or alter our copyright notice in any way then the template will be disabled and unusable. </p>
<p style="color:#FF0000">If you would like to remove our copyright notice then you may purchase it&#8217;s removal for £29.99 from: <a href="http://clients.ansuk.co.uk/cart.php?a=add&#038;pid=14" class="links2" onclick="pageTracker._trackPageview('/outgoing/clients.ansuk.co.uk/cart.php?a=add_038_pid=14&amp;referer=');">http://clients.ansuk.co.uk/cart.php?a=add&#038;pid=14</a></p>
<div align="center">
<img src="http://www.hants-web.co.uk/Blog/images/AnsukFree.jpg" border="0" height="506" width="450" alt="Free CubeCart Version 3 Skin by Hampshire Web Design, www.hants-web.co.uk" title="Free CubeCart Version 3 Skin by Hampshire Web Design, www.hants-web.co.uk" /></div>
<p><br clear="all" />
<p>&nbsp;</p>
<div style="margin-right:250px; margin-bottom:20px;"><a href="http://clients.ansuk.co.uk/dl.php?type=d&#038;id=8" class="rm" onclick="pageTracker._trackPageview('/outgoing/clients.ansuk.co.uk/dl.php?type=d_038_id=8&amp;referer=');">Download</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.hants-web.co.uk/Blog/free-downloads/free-skin-for-cubecart-version-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

