<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Screen-Tuts.com</title>
	
	<link>http://www.screen-tuts.com</link>
	<description>Flash, Photoshop and Website Creation.</description>
	<pubDate>Sat, 06 Jun 2009 13:33:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Screen-Tuts" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="screen-tuts" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>First Footsteps into CSS</title>
		<link>http://www.screen-tuts.com/first-footsteps-into-css/</link>
		<comments>http://www.screen-tuts.com/first-footsteps-into-css/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 13:33:27 +0000</pubDate>
		<dc:creator>Screen-Tuts</dc:creator>
		
		<category><![CDATA[Videos]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.screen-tuts.com/?p=141</guid>
		<description><![CDATA[<img src="http://screen-tuts.com/post-images/4.jpg" alt="4. First Footsteps into CSS" />
<p class = "post-text">
This is the second tutorial in the 'First Footsteps' series and we use the html file we made in the last tutorial to learn how to apply css styles to tags and classes to improve the look of the page. I should warn you now though, what we create today does not look good, it is just an example of how to style in css. Next week I will release a jquery or php tutorial for this series, I'm not sure which one yet, comment if you have a preference.
</p>]]></description>
			<content:encoded><![CDATA[<h3>Breif</h3>
<p class="post-intro">This is the second tutorial in the &#8216;First Footsteps&#8217; series and we use the html file we made in the last tutorial to learn how to apply css styles to tags and classes to improve the look of the page. I should warn you now though, what we create today does not look good, it is just an example of how to style in css. Next week I will release a jquery or php tutorial for this series, I&#8217;m not sure which one yet, comment if you have a preference.</p>
<div id="user-files">
<div><a class="view-demo" href="/demo-files/4/"></a></div>
<div><a class="code-down" href="/source-files/"></a></div>
</div>
<h3>Video</h3>
<div style="padding: 10px 45px;"><script src="http://www.screen-tuts.com/jw-player/swfobject.js" type="text/javascript"></script></p>
<div id="player">This text will be replaced</div>
<p><script type="text/javascript"><!--
var so = new SWFObject('http://www.screen-tuts.com/jw-player/player.swf','mpl','600','400','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','&#038;author=Chris Bull&#038;file=http://screen-tuts_streamtuts.s3.amazonaws.com/First Steps into CSS.mp4');
so.write('player');
// --></script></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Screen-Tuts?a=ovqWsicMTME:u1-W0a2FyMg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Screen-Tuts?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.screen-tuts.com/first-footsteps-into-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP - Email Verification</title>
		<link>http://www.screen-tuts.com/php-email-verification/</link>
		<comments>http://www.screen-tuts.com/php-email-verification/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 10:18:38 +0000</pubDate>
		<dc:creator>Screen-Tuts</dc:creator>
		
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.screen-tuts.com/?p=132</guid>
		<description><![CDATA[<img src="http://screen-tuts.com/post-images/tips.jpg" alt="Screen-Tuts Tips" />
<p class = "post-text">
The following piece of code will help you verify a users email address which they have entered into a form. This is useful to ensure that you do not receive any invalid email addresses, but also so you can alert the user that they have perhaps spelt it wrong.
</p>]]></description>
			<content:encoded><![CDATA[<h3>Breif</h3>
<p class="post-intro">
So while working on another project of mine I found that I needed to verify the email address that the user has submitted. I looked around on the internet and found a very useful piece of code which will do this.</p>
<div class = "code" >
<code><br />
<?php<br />
$email = something@yourdomain.com<br />
if(!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email)){<br />
$message = "Your Email address appears to be invalid.";<br />
} else {<br />
$message = "Your Email address appears to be invalid.";<br />
}<br />
?><br />
</code>
</div>
<p class="post-intro">
This &#8216;eregi&#8217; function checks if the string inside the email variable follows the structure given. So it makes sure that there are no illegal characters. There is only 1 @ character and the last &#8216;.&#8217; is at least 2 characters away from the @ character. If you have any other ways of doing this, please comment below.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Screen-Tuts?a=HREcuj0_kEs:OdiLNqvqzrU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Screen-Tuts?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.screen-tuts.com/php-email-verification/feed/</wfw:commentRss>
		</item>
		<item>
		<title>First Footsteps into HTML</title>
		<link>http://www.screen-tuts.com/first-footsteps-into-html/</link>
		<comments>http://www.screen-tuts.com/first-footsteps-into-html/#comments</comments>
		<pubDate>Thu, 28 May 2009 17:49:42 +0000</pubDate>
		<dc:creator>Screen-Tuts</dc:creator>
		
		<category><![CDATA[Videos]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.screen-tuts.com/?p=118</guid>
		<description><![CDATA[<img src="http://screen-tuts.com/post-images/3.jpg" alt="3. First Footsteps into HTML" />
<p class = "post-text">
Hello, this is the first web based tutorial and its the start of a series in which I aim to cover css, php and javascript. This is the complete basics of html, aimed at new comers to the web development world. We go through everything you need to know to create your first web page.
</p>]]></description>
			<content:encoded><![CDATA[<h3>Breif</h3>
<p class="post-intro">
Hello, this is the first web based tutorial and its the start of a series in which I aim to cover css, php and javascript. This is the complete basics of html, aimed at new comers to the web development world. We go through everything you need to know to create your first web page.
</p>
<div id = "user-files">
<div><a class = "view-demo" href = "/demo-files/3/"></a></div>
<div><a class = "code-down" href = "/source-files/"></a></div>
<div class = "clear"></div>
</div>
<h3>Video</h3>
<div style = "padding: 10px 45px;">
<script type="text/javascript" src="http://www.screen-tuts.com/jw-player/swfobject.js"></script></p>
<div id="player">This text will be replaced</div>
<p><script type="text/javascript">
var so = new SWFObject('http://www.screen-tuts.com/jw-player/player.swf','mpl','600','400','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','&#038;author=Chris Bull&#038;file=http://screen-tuts_streamtuts.s3.amazonaws.com/First Footsteps into HTML.mp4');
so.write('player');
</script>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Screen-Tuts?a=Vk4jdpsDlxE:eZjnYKozQxE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Screen-Tuts?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.screen-tuts.com/first-footsteps-into-html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flash Tools of the Trade - The Deco Tool</title>
		<link>http://www.screen-tuts.com/the-deco-tool/</link>
		<comments>http://www.screen-tuts.com/the-deco-tool/#comments</comments>
		<pubDate>Wed, 27 May 2009 18:36:48 +0000</pubDate>
		<dc:creator>Screen-Tuts</dc:creator>
		
		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.screen-tuts.com/?p=116</guid>
		<description><![CDATA[<img src="http://screen-tuts.com/post-images/2.jpg" alt="2. Flash Tools of the Trade - The Deco Tool" />
<p class = "post-text">Another flash tutorial to continue the 'Flash Tools of the Trade' series. This time looking at a new feature in CS4 which I think will help potential designers create some pretty niffty pictures. If you manage to create something really cool with this tool either send it to me or provide a link in the comments below and I'll see if I can post it and put it live for you.</p>]]></description>
			<content:encoded><![CDATA[<h3>Breif</h3>
<p class="post-intro">Another flash tutorial to continue the &#8216;Flash Tools of the Trade&#8217; series. This time looking at a new feature in CS4 which I think will help potential designers create some pretty niffty pictures. If you manage to create something really cool with this tool either send it to me or provide a link in the comments below and I&#8217;ll see if I can post it and put it live for you.</p>
<div id = "user-files">
<a class = "code-down" href = "/source-files/"></a>
</div>
<div class = "clear"></div>
<h3>Video</h3>
<div style = "padding: 10px 45px;">
<script type="text/javascript" src="http://www.screen-tuts.com/jw-player/swfobject.js"></script></p>
<div id="player">This text will be replaced</div>
<p><script type="text/javascript">
var so = new SWFObject('http://www.screen-tuts.com/jw-player/player.swf','mpl','600','400','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','&#038;author=Chris Bull&#038;file=http://screen-tuts_streamtuts.s3.amazonaws.com/Flash Tools of the Trade - The Deco Tool.mp4');
so.write('player');
</script>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Screen-Tuts?a=KVIKU-_YDfo:ijM9Z3iLN4g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Screen-Tuts?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.screen-tuts.com/the-deco-tool/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Free - Countries of the World XML File</title>
		<link>http://www.screen-tuts.com/free-countries-of-the-world-xml-file/</link>
		<comments>http://www.screen-tuts.com/free-countries-of-the-world-xml-file/#comments</comments>
		<pubDate>Sun, 24 May 2009 11:01:27 +0000</pubDate>
		<dc:creator>Screen-Tuts</dc:creator>
		
		<category><![CDATA[Free]]></category>

		<guid isPermaLink="false">http://www.screen-tuts.com/?p=108</guid>
		<description><![CDATA[<img src="http://screen-tuts.com/post-images/free-countries.jpg" alt="Free - Countries of the World XML File" />
<p class = "post-text">
Have you ever needed to have a log in form for your website and wanted to know where the user is from, I have… I’m sure there is an easier way to get about doing this, but I created this XML file, with all of the countries in the world, in alphabetical order. Just include it into a drop down selection box and be on your way.
</p>]]></description>
			<content:encoded><![CDATA[<h3>Breif</h3>
<p class="post-intro">
Have you ever needed to have a log in form for your website and wanted to know where the user is from, I have… I’m sure there is an easier way to get about doing this, but I created this XML file, with all of the countries in the world, in alphabetical order. Just include it into a drop down selection box and be on your way.<br />
Any questions or ideas?
</p>
<div id = "user-files">
<a class = "code-down" href = "/free/countries.zip"></a>
</div>
<div class = "clear"></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Screen-Tuts?a=e3HU-tbFCmE:p0wKa-Bf3bM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Screen-Tuts?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.screen-tuts.com/free-countries-of-the-world-xml-file/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
