<?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>Tutorius &#187; PHP</title>
	<atom:link href="http://www.tutorius.com/category/php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tutorius.com</link>
	<description></description>
	<lastBuildDate>Thu, 12 Jan 2012 21:30:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Access Column names in MySQL</title>
		<link>http://www.tutorius.com/access-column-names-in-mysql</link>
		<comments>http://www.tutorius.com/access-column-names-in-mysql#comments</comments>
		<pubDate>Thu, 12 Jan 2012 21:28:28 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tutorius.com/?p=1111</guid>
		<description><![CDATA[I recently needed to create a page that would serve as a light admin page for my configuration table.  Just read in the table and let me edit the values.  However,...]]></description>
		<wfw:commentRss>http://www.tutorius.com/access-column-names-in-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random String or Password Generator</title>
		<link>http://www.tutorius.com/random-string-or-password-generator</link>
		<comments>http://www.tutorius.com/random-string-or-password-generator#comments</comments>
		<pubDate>Mon, 12 Dec 2011 06:42:59 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tutorius.com/?p=1104</guid>
		<description><![CDATA[The following function returns a random string of the length passed to the function, with a default length of 8 if none is passed. If you look at the $chars...]]></description>
		<wfw:commentRss>http://www.tutorius.com/random-string-or-password-generator/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing Secure PHP Code</title>
		<link>http://www.tutorius.com/writing-secure-php-code</link>
		<comments>http://www.tutorius.com/writing-secure-php-code#comments</comments>
		<pubDate>Fri, 18 Jun 2010 13:48:32 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tutorius.com/?p=899</guid>
		<description><![CDATA[I won't try to reinvent the wheel here. These articles from Dave and AddedBytes.com do the job just fine. Writing Secure PHP]]></description>
		<wfw:commentRss>http://www.tutorius.com/writing-secure-php-code/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Debug Message Function</title>
		<link>http://www.tutorius.com/php-debug-message-function</link>
		<comments>http://www.tutorius.com/php-debug-message-function#comments</comments>
		<pubDate>Mon, 17 May 2010 11:55:25 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tutorius.com/?p=849</guid>
		<description><![CDATA[PHP coders frequently need to display a message in code for debugging purposes. It helps to be able to display these messages in a distinctive matter that sets them apart...]]></description>
		<wfw:commentRss>http://www.tutorius.com/php-debug-message-function/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loading configuration data from a MySQL into PHP constants</title>
		<link>http://www.tutorius.com/loading-configuration-data-from-mysql-into-php-constants</link>
		<comments>http://www.tutorius.com/loading-configuration-data-from-mysql-into-php-constants#comments</comments>
		<pubDate>Wed, 12 May 2010 19:12:58 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.tutorius.com/?p=838</guid>
		<description><![CDATA[The following code will take the contents of the first row of a configuration table and create a constant for each attribute stored in it. 1 2 3 4 5...]]></description>
		<wfw:commentRss>http://www.tutorius.com/loading-configuration-data-from-mysql-into-php-constants/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building a dynamic SELECT list with PHP and MySQL</title>
		<link>http://www.tutorius.com/building-a-dynamic-select-list-with-php-and-mysql</link>
		<comments>http://www.tutorius.com/building-a-dynamic-select-list-with-php-and-mysql#comments</comments>
		<pubDate>Wed, 24 Mar 2010 03:13:42 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=718</guid>
		<description><![CDATA[A common scenario in web applications is the need to create a &#60;SELECT&#62; list using a set of values extracted from a lookup table in a database. This article will...]]></description>
		<wfw:commentRss>http://www.tutorius.com/building-a-dynamic-select-list-with-php-and-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick and Dirty: List records in a table using PHP and MySQL</title>
		<link>http://www.tutorius.com/quick-and-dirty-list-records-in-a-table-using-php-and-mysql</link>
		<comments>http://www.tutorius.com/quick-and-dirty-list-records-in-a-table-using-php-and-mysql#comments</comments>
		<pubDate>Fri, 23 Oct 2009 15:40:40 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Snippet]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=497</guid>
		<description><![CDATA[This code lists reads a dataset from the database and lists all attributes in a table.  This code sample is deliberately quite basic, though CSS is used (through the $bgcolour...]]></description>
		<wfw:commentRss>http://www.tutorius.com/quick-and-dirty-list-records-in-a-table-using-php-and-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calculating a fiscal year in PHP</title>
		<link>http://www.tutorius.com/calculating-a-fiscal-year-in-php</link>
		<comments>http://www.tutorius.com/calculating-a-fiscal-year-in-php#comments</comments>
		<pubDate>Fri, 23 Oct 2009 12:47:35 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=486</guid>
		<description><![CDATA[This code is a straight cut and paste from a comment the php.net page on the strftime() function, credit is due to lamb dot dan at gmail dot com. 1...]]></description>
		<wfw:commentRss>http://www.tutorius.com/calculating-a-fiscal-year-in-php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Prevent SQL Injection attacks in PHP and MySQL</title>
		<link>http://www.tutorius.com/prevent-sql-injection-attacks-in-php-and-mysql</link>
		<comments>http://www.tutorius.com/prevent-sql-injection-attacks-in-php-and-mysql#comments</comments>
		<pubDate>Mon, 17 Aug 2009 13:46:49 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=386</guid>
		<description><![CDATA[Place this code in your database connect include, just before the database connection is made. This ensures that SQL injection attempts are handled before the database is opened. By doing...]]></description>
		<wfw:commentRss>http://www.tutorius.com/prevent-sql-injection-attacks-in-php-and-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the font of code blocks with geshi syntax highlighter</title>
		<link>http://www.tutorius.com/changing-the-font-of-code-blocks-with-geshi-syntax-highlighter</link>
		<comments>http://www.tutorius.com/changing-the-font-of-code-blocks-with-geshi-syntax-highlighter#comments</comments>
		<pubDate>Fri, 31 Jul 2009 17:46:22 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://tutorius.com/?p=297</guid>
		<description><![CDATA[By default, geshi-derived syntax highlighters use a serif font to display code blocks.  Many people find serif fonts less clear than the visually simpler sans-serif fonts. A good choice is...]]></description>
		<wfw:commentRss>http://www.tutorius.com/changing-the-font-of-code-blocks-with-geshi-syntax-highlighter/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

