<?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>ElanMan &#187; PHP</title>
	<atom:link href="http://www.elanman.co.uk/languages/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.elanman.co.uk</link>
	<description>ElanMan&#039;s Code Snippets</description>
	<lastBuildDate>Mon, 31 May 2010 07:30:25 +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>Create Dynamic Date Selects</title>
		<link>http://www.elanman.co.uk/2009/09/create-dynamic-date-selects/</link>
		<comments>http://www.elanman.co.uk/2009/09/create-dynamic-date-selects/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 16:52:26 +0000</pubDate>
		<dc:creator>ElanMan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Dynamic]]></category>
		<category><![CDATA[elanman]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[select]]></category>
		<category><![CDATA[select elements]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.elanman.co.uk/?p=1028</guid>
		<description><![CDATA[If you ever require users to submit a date using an online form, perhaps a birthday or an expiry date, a good way to eliminate spelling mistakes and format the submitted date how you want is to provide drop down &#8216;select&#8217; elements. Using PHP, we can easily create dynamic select elements for the day, month [...]]]></description>
		<wfw:commentRss>http://www.elanman.co.uk/2009/09/create-dynamic-date-selects/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dynamic Copyright Date</title>
		<link>http://www.elanman.co.uk/2009/08/dynamic-copyright-date/</link>
		<comments>http://www.elanman.co.uk/2009/08/dynamic-copyright-date/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 18:18:43 +0000</pubDate>
		<dc:creator>ElanMan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[date function]]></category>
		<category><![CDATA[Dynamic]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.elanman.co.uk/?p=1019</guid>
		<description><![CDATA[Ok, we&#8217;ve all got the standard copyright notice at the bottom of our web pages, something like &#169; 2009. &#38;copy; 2009 But let&#8217;s be honest, nothing looks worse than a copyright statement when the year is out of date! It gives the impression that you don&#8217;t care. You can easily prevent this by using the [...]]]></description>
		<wfw:commentRss>http://www.elanman.co.uk/2009/08/dynamic-copyright-date/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Create Your First AJAX Request (Part Three)</title>
		<link>http://www.elanman.co.uk/2009/07/create-your-first-ajax-request-part-three/</link>
		<comments>http://www.elanman.co.uk/2009/07/create-your-first-ajax-request-part-three/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 22:20:14 +0000</pubDate>
		<dc:creator>ElanMan</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[select]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.elanman.co.uk/?p=991</guid>
		<description><![CDATA[The complete script can be downloaded here In the last part of this series, we&#8217;ll create &#8216;showdetails.js&#8217;. This will turn our web page into a AJAX-powered web page! In the first part we created the XMLHttpRequest Object. Now we need to create an instance of it. var req = new getRequestObj&#40;&#41;; The XMLHttpRequest Object has [...]]]></description>
		<wfw:commentRss>http://www.elanman.co.uk/2009/07/create-your-first-ajax-request-part-three/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create Your First AJAX Request (Part Two)</title>
		<link>http://www.elanman.co.uk/2009/07/create-your-first-ajax-request-part-two/</link>
		<comments>http://www.elanman.co.uk/2009/07/create-your-first-ajax-request-part-two/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 13:45:30 +0000</pubDate>
		<dc:creator>ElanMan</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dynamic]]></category>
		<category><![CDATA[elanman]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[select]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.elanman.co.uk/?p=965</guid>
		<description><![CDATA[An example of what you&#8217;re creating can be seen here. The complete script can be downloaded here In the first part, we created a function, getRequestObj(), that we can now use to initiate a new XMLHttpRequest object. This is as simple as&#8230; var myReq = new getRequestObj&#40;&#41;; However,it&#8217;s important to remember that JavaScript should always [...]]]></description>
		<wfw:commentRss>http://www.elanman.co.uk/2009/07/create-your-first-ajax-request-part-two/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Create Your First AJAX Request (Part One)</title>
		<link>http://www.elanman.co.uk/2009/06/create-your-first-ajax-request-part-one/</link>
		<comments>http://www.elanman.co.uk/2009/06/create-your-first-ajax-request-part-one/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 20:36:07 +0000</pubDate>
		<dc:creator>ElanMan</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.elanman.co.uk/?p=952</guid>
		<description><![CDATA[AJAX is now everywhere on the web. The ability to update content on the web page without reloading the page provides a slicker experience to the user whilst also reducing the load on the server (the server only needs to output the updated content and not the entire page). The complete script can be downloaded [...]]]></description>
		<wfw:commentRss>http://www.elanman.co.uk/2009/06/create-your-first-ajax-request-part-one/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Simple Random Image With PHP</title>
		<link>http://www.elanman.co.uk/2009/06/simple-random-image-with-php/</link>
		<comments>http://www.elanman.co.uk/2009/06/simple-random-image-with-php/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 20:14:56 +0000</pubDate>
		<dc:creator>ElanMan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[elanman]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[php image rotation]]></category>
		<category><![CDATA[random image php]]></category>
		<category><![CDATA[rotate images]]></category>
		<category><![CDATA[select]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.elanman.co.uk/?p=926</guid>
		<description><![CDATA[We&#8217;ve already covered &#8216;creating a random image with JavaScript&#8217; but the best way to produce a random image on each page load is to use PHP. Using PHP, you are not relying on the browser supporting JavaScript at all and everyone will see the random images. OK, to start, we&#8217;ll create a function called randomSelect(). [...]]]></description>
		<wfw:commentRss>http://www.elanman.co.uk/2009/06/simple-random-image-with-php/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Simple Pagination</title>
		<link>http://www.elanman.co.uk/2009/05/simple-pagination/</link>
		<comments>http://www.elanman.co.uk/2009/05/simple-pagination/#comments</comments>
		<pubDate>Wed, 27 May 2009 21:57:33 +0000</pubDate>
		<dc:creator>ElanMan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[paginate results]]></category>
		<category><![CDATA[pagination]]></category>
		<category><![CDATA[select]]></category>

		<guid isPermaLink="false">http://www.elanman.co.uk/?p=829</guid>
		<description><![CDATA[What is pagination? Simply put, pagination is splitting up many results in to bite size chunks (pages) that helps the user quickly sort through the results instead of having to scroll way down the page to find what they&#8217;re looking for. In order to paginate our results, we need to know how many results there [...]]]></description>
		<wfw:commentRss>http://www.elanman.co.uk/2009/05/simple-pagination/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP Quiz Source Code</title>
		<link>http://www.elanman.co.uk/2009/04/php-quiz-source-code/</link>
		<comments>http://www.elanman.co.uk/2009/04/php-quiz-source-code/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 18:46:46 +0000</pubDate>
		<dc:creator>ElanMan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[elanman]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[php quiz]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://www.elanman.co.uk/?p=757</guid>
		<description><![CDATA[Just a quick heads up to let you know that you can now download all of the source code for the PHP Quiz. This might make it easier for you to get up and running without trying to follow all of the series. I&#8217;ve also included the small amount of JavaScript too. You can download [...]]]></description>
		<wfw:commentRss>http://www.elanman.co.uk/2009/04/php-quiz-source-code/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Make Your Own PHP Quiz (final part)</title>
		<link>http://www.elanman.co.uk/2009/04/make-your-own-php-quiz-final-part/</link>
		<comments>http://www.elanman.co.uk/2009/04/make-your-own-php-quiz-final-part/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 12:56:57 +0000</pubDate>
		<dc:creator>ElanMan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[$_POST]]></category>
		<category><![CDATA[elanman]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[modulus operator]]></category>
		<category><![CDATA[php arrays]]></category>
		<category><![CDATA[php quiz]]></category>
		<category><![CDATA[php-powered quiz]]></category>
		<category><![CDATA[SESSIONS]]></category>
		<category><![CDATA[SimpleXML]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.elanman.co.uk/?p=613</guid>
		<description><![CDATA[You can download the entire source code for this series here The first part of this post will concentrate on adding new users/scores to the leaderboard (leaders.xml). We only want to add this information to the xml file when the user has completed the quiz(obviously) so, on &#8216;test.php&#8217;, we check for the presence of the [...]]]></description>
		<wfw:commentRss>http://www.elanman.co.uk/2009/04/make-your-own-php-quiz-final-part/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Make Your Own PHP Quiz (part 6)</title>
		<link>http://www.elanman.co.uk/2009/04/make-your-own-php-quiz-part-6/</link>
		<comments>http://www.elanman.co.uk/2009/04/make-your-own-php-quiz-part-6/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 21:02:24 +0000</pubDate>
		<dc:creator>ElanMan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[arsort]]></category>
		<category><![CDATA[elanman]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[modulus operator]]></category>
		<category><![CDATA[php quiz]]></category>
		<category><![CDATA[SimpleXML]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.elanman.co.uk/?p=580</guid>
		<description><![CDATA[You can download the entire source code for this series here In order to store usernames and scores we&#8217;re going to use an xml file. We could also do this with a database but for the sake of simplicity, we&#8217;ll use xml. Copy and paste the following in to a text editor and save it [...]]]></description>
		<wfw:commentRss>http://www.elanman.co.uk/2009/04/make-your-own-php-quiz-part-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
