<?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>Wuup &#187; PHP</title>
	<atom:link href="http://www.wuup.co.uk/category/blog/tutorials/php-tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wuup.co.uk</link>
	<description>We&#039;re Geeks - This is Where We Write</description>
	<lastBuildDate>Fri, 25 Nov 2011 10:30:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>PHP basics &#8211; Date and time handling with time zones</title>
		<link>http://www.wuup.co.uk/php-basics-date-and-time-handling-with-time-zones</link>
		<comments>http://www.wuup.co.uk/php-basics-date-and-time-handling-with-time-zones#comments</comments>
		<pubDate>Tue, 08 Jun 2010 08:33:25 +0000</pubDate>
		<dc:creator>Alan Hamlyn</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[converting]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[datetime]]></category>
		<category><![CDATA[epoch]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[to utc]]></category>

		<guid isPermaLink="false">http://www.wuup.co.uk/?p=4302</guid>
		<description><![CDATA[So here it is, how to what I did with java, but with php. Fun stuff! date_default_timezone_set($timeZone); $epoch = mktime($hour, $min, $sec, $month, $day, $year); date_default_timezone_set($serverTimeZone); echo date("Y-m-d H:i:s",$epoch); mktime generates the epoch time for the date entered, you change the time zone back to the server and there you go, converted date time ArrayArrayArrayArrayArrayArrayArrayArray]]></description>
		<wfw:commentRss>http://www.wuup.co.uk/php-basics-date-and-time-handling-with-time-zones/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP String manipulation</title>
		<link>http://www.wuup.co.uk/php-string-manipulation</link>
		<comments>http://www.wuup.co.uk/php-string-manipulation#comments</comments>
		<pubDate>Sun, 06 Jun 2010 15:52:11 +0000</pubDate>
		<dc:creator>Alan Hamlyn</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php string manipulation]]></category>

		<guid isPermaLink="false">http://www.wuup.co.uk/?p=4251</guid>
		<description><![CDATA[String manipulation in php is rather an easy affair, here is some simple methods to find strings within strings, extract strings, find out the length of a string and all that fun stuff kids like to do nowadays.]]></description>
		<wfw:commentRss>http://www.wuup.co.uk/php-string-manipulation/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP Basics: Break out of loops (stopping a loop)</title>
		<link>http://www.wuup.co.uk/php-basics-break-out-of-loops-stopping-a-loop</link>
		<comments>http://www.wuup.co.uk/php-basics-break-out-of-loops-stopping-a-loop#comments</comments>
		<pubDate>Tue, 25 May 2010 11:14:55 +0000</pubDate>
		<dc:creator>Alan Hamlyn</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.wuup.co.uk/?p=4210</guid>
		<description><![CDATA[Hello, so you have a common loop for($i = 0; $i < $j; ++$i){ } but you may want to stop the loop before the loop finished, so how do you do this? You use the break statement! so using the previous example, lets add a break statement to it for($i = 0; $i < [...]]]></description>
		<wfw:commentRss>http://www.wuup.co.uk/php-basics-break-out-of-loops-stopping-a-loop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP directory scanning</title>
		<link>http://www.wuup.co.uk/php-directory-scanning</link>
		<comments>http://www.wuup.co.uk/php-directory-scanning#comments</comments>
		<pubDate>Tue, 18 May 2010 14:09:40 +0000</pubDate>
		<dc:creator>Alan Hamlyn</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[directory scanning]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.wuup.co.uk/?p=4183</guid>
		<description><![CDATA[Here is the code i have mocked up to check the root directory and 1 directory down for a dir specified in $mainDirArray and then it will exit out of the loop. $mainBLDirArray are dirs to avoid. Hope this helps, probably not the most optimised way to do it but works well in testing. $conn_id1 [...]]]></description>
		<wfw:commentRss>http://www.wuup.co.uk/php-directory-scanning/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Basics : Removing White Space / HTML Tags From A String</title>
		<link>http://www.wuup.co.uk/php-basics-removing-white-space-html-tags-from-a-string-2</link>
		<comments>http://www.wuup.co.uk/php-basics-removing-white-space-html-tags-from-a-string-2#comments</comments>
		<pubDate>Fri, 16 Oct 2009 13:02:40 +0000</pubDate>
		<dc:creator>Alan Hamlyn</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.wuup.co.uk/?p=3625</guid>
		<description><![CDATA[Hey Wuup readers. I’ve got a simple post here for those learning PHP, or even the more seasoned programmer. If you’re looking for a simple way to to remove white space from strings, and strip html tags from strings too, try this out. It can be handy if you don’t want people to abuse a form [...]]]></description>
		<wfw:commentRss>http://www.wuup.co.uk/php-basics-removing-white-space-html-tags-from-a-string-2/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP String Functions</title>
		<link>http://www.wuup.co.uk/php-string-functions</link>
		<comments>http://www.wuup.co.uk/php-string-functions#comments</comments>
		<pubDate>Sun, 13 Sep 2009 20:18:06 +0000</pubDate>
		<dc:creator>Spyda</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[strings]]></category>

		<guid isPermaLink="false">http://www.wuup.co.uk/?p=3365</guid>
		<description><![CDATA[I've been doing an awful lot of string manipulation so I thought I would make todays article about the PHP functions I use most regularly for cleaning up and manipulating content entry.]]></description>
		<wfw:commentRss>http://www.wuup.co.uk/php-string-functions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Basics : Removing White Space / HTML Tags from a String</title>
		<link>http://www.wuup.co.uk/php-basics-removing-white-space-html-tags-from-a-string</link>
		<comments>http://www.wuup.co.uk/php-basics-removing-white-space-html-tags-from-a-string#comments</comments>
		<pubDate>Mon, 17 Aug 2009 16:02:28 +0000</pubDate>
		<dc:creator>Alan Hamlyn</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[learn php]]></category>
		<category><![CDATA[learn programming]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.wuup.co.uk/?p=3099</guid>
		<description><![CDATA[Hey Wuup readers. I&#8217;ve got a simple post here for those learning PHP, or even the more seasoned programmer. If you&#8217;re looking for a simple way to to remove white space from strings, and strip html tags from strings too, try this out. It can be handy if you don&#8217;t want people to abuse a [...]]]></description>
		<wfw:commentRss>http://www.wuup.co.uk/php-basics-removing-white-space-html-tags-from-a-string/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The long overdue CRON job</title>
		<link>http://www.wuup.co.uk/the-long-overdue-cron-job</link>
		<comments>http://www.wuup.co.uk/the-long-overdue-cron-job#comments</comments>
		<pubDate>Fri, 31 Jul 2009 11:15:31 +0000</pubDate>
		<dc:creator>Spyda</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[automating tasks]]></category>
		<category><![CDATA[CRON]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.wuup.co.uk/?p=2931</guid>
		<description><![CDATA[CRON jobs. I've always known about them, I used to use variations of them in my first job. Scheduled tasks set to fire at a particular time or date, or with a particular frequency.]]></description>
		<wfw:commentRss>http://www.wuup.co.uk/the-long-overdue-cron-job/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Basics: Exceptions: Throw and Catch Tutorial</title>
		<link>http://www.wuup.co.uk/php-basics-exceptions-throw-catch-example-code</link>
		<comments>http://www.wuup.co.uk/php-basics-exceptions-throw-catch-example-code#comments</comments>
		<pubDate>Wed, 11 Feb 2009 14:59:17 +0000</pubDate>
		<dc:creator>Alan Hamlyn</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[exception]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[try and catch]]></category>

		<guid isPermaLink="false">http://www.wuup.co.uk/?p=1842</guid>
		<description><![CDATA[Hi there, Today we are talking about PHP excetions, very handy stuff you know, and available from PHP5 and onwards (current at time of this article), the throw and catch is similar to other programming languages which also use &#8216;Try&#8217; and &#8216;Catch&#8217; exceptions. The point of these exceptions, is that PHP can be &#8216;thrown&#8217; something, [...]]]></description>
		<wfw:commentRss>http://www.wuup.co.uk/php-basics-exceptions-throw-catch-example-code/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>PHP Basics: Boolean Logic Tutorial</title>
		<link>http://www.wuup.co.uk/php-basics-boolean-logic-tutorial</link>
		<comments>http://www.wuup.co.uk/php-basics-boolean-logic-tutorial#comments</comments>
		<pubDate>Wed, 04 Feb 2009 10:54:26 +0000</pubDate>
		<dc:creator>Alan Hamlyn</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[boolean]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[examples]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.wuup.co.uk/?p=1825</guid>
		<description><![CDATA[Hi there PHP fans! (lol I sound like an American sports commentator). Ok we&#8217;re going to take a look at PHP Boolean logic, it&#8217;s a tutorial, so we&#8217;ll take you through it simply and give you some examples. Easy peasy! &#8211; It won&#8217;t take long. PHP Boolean Type Booleans are the simplest php &#8216;type&#8217;. A [...]]]></description>
		<wfw:commentRss>http://www.wuup.co.uk/php-basics-boolean-logic-tutorial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

