<?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>Graphika Studioz - Web Design, Development, Hosting and SEO Services - Parksville, Qualicum Beach  &#187; php</title>
	<atom:link href="http://headfirstproductions.ca/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://headfirstproductions.ca</link>
	<description>WEB 2.0 - Creative - Intuitive Web Sites and Web Applications built with Ruby on Rails, Ajax, CSS and Web Standards</description>
	<lastBuildDate>Fri, 30 Apr 2010 06:40:47 +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>Php error URL file-access is disabled in the server configuration</title>
		<link>http://headfirstproductions.ca/php-error-url-file-access-is-disabled-in-the-server-configuration/</link>
		<comments>http://headfirstproductions.ca/php-error-url-file-access-is-disabled-in-the-server-configuration/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 02:21:16 +0000</pubDate>
		<dc:creator>Darren Terhune</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://headfirstproductions.ca/blog/php-error-url-file-access-is-disabled-in-the-server-configuration/</guid>
		<description><![CDATA[If your have ever got this error: URL file-access is disabled in the server configuration Using php functions like fopen, getimagesize it&#8217;s because your using a absolute path. It&#8217;s a security thing so that people can&#8217;t run scripts to open files on other servers other than there own. You can change this by configuring the [...]]]></description>
		<wfw:commentRss>http://headfirstproductions.ca/php-error-url-file-access-is-disabled-in-the-server-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding How Joins Work</title>
		<link>http://headfirstproductions.ca/understanding-how-joins-work/</link>
		<comments>http://headfirstproductions.ca/understanding-how-joins-work/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 22:04:15 +0000</pubDate>
		<dc:creator>Darren Terhune</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://headfirstproductions.ca/blog/understanding-how-joins-work/</guid>
		<description><![CDATA[Mike Nixon sent me this link that does a pretty sweat job of describing how the different types of joins work when playing with a database.]]></description>
		<wfw:commentRss>http://headfirstproductions.ca/understanding-how-joins-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deleting a file in php using unlink</title>
		<link>http://headfirstproductions.ca/deleting-a-file-in-php-using-unlink/</link>
		<comments>http://headfirstproductions.ca/deleting-a-file-in-php-using-unlink/#comments</comments>
		<pubDate>Sat, 31 Mar 2007 10:44:48 +0000</pubDate>
		<dc:creator>Darren Terhune</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://headfirstproductions.ca/blog/deleting-a-file-in-php-using-unlink/</guid>
		<description><![CDATA[Tonight I was having troubles deleting a file from a directory in an application I am working on. It kept deleting the entry in the table but not the actual file from the directory. Here is what the code looked like: < ?php $sql = "DELETE FROM uploads WHERE upload_id = $id"; $result = mysql_query($sql); [...]]]></description>
		<wfw:commentRss>http://headfirstproductions.ca/deleting-a-file-in-php-using-unlink/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating a email form using actionscript and php</title>
		<link>http://headfirstproductions.ca/creating-a-email-form-using-actionscript-and-php/</link>
		<comments>http://headfirstproductions.ca/creating-a-email-form-using-actionscript-and-php/#comments</comments>
		<pubDate>Mon, 05 Mar 2007 10:55:33 +0000</pubDate>
		<dc:creator>Darren Terhune</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://headfirstproductions.ca/blog/creating-a-email-form-using-actionscript-and-php/</guid>
		<description><![CDATA[I just finished an email form that I put up on my contact page. It was an assignment for my Actionscript class. I used Actionscript to import and place the components, validate, and send data using a LoadVars function to a php script, which then sends off an email to myself. This was the first [...]]]></description>
		<wfw:commentRss>http://headfirstproductions.ca/creating-a-email-form-using-actionscript-and-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Simple Birthday Calculator</title>
		<link>http://headfirstproductions.ca/find-what-day-your-birthday-falls-onto/</link>
		<comments>http://headfirstproductions.ca/find-what-day-your-birthday-falls-onto/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 04:11:07 +0000</pubDate>
		<dc:creator>Darren Terhune</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://headfirstproductions.ca/find-what-day-your-birthday-falls-onto/</guid>
		<description><![CDATA[I&#8217;ve always had a problem with knowing ahead of time what day my birthday was going to be on. Like if it was on a FRIDAY or SATURDAY, so that I could party. So HERE is a cool application that I just did in my php class. It takes your input and tells you what [...]]]></description>
		<wfw:commentRss>http://headfirstproductions.ca/find-what-day-your-birthday-falls-onto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
