<?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>Christopher Huyler's Flex Blog &#187; PHP</title>
	<atom:link href="http://www.huyler.net/flexblog/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.huyler.net/flexblog</link>
	<description>&#60;mx:Flex Development Examples /&#62;</description>
	<lastBuildDate>Wed, 08 Jun 2011 18:12:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Using SSL Authentication on a non-SSL website</title>
		<link>http://www.huyler.net/flexblog/2008/04/05/using-ssl-authentication-on-a-non-ssl-website/</link>
		<comments>http://www.huyler.net/flexblog/2008/04/05/using-ssl-authentication-on-a-non-ssl-website/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 17:58:21 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.huyler.net/flexblog/2008/04/05/using-ssl-authentication-on-a-non-ssl-website/</guid>
		<description><![CDATA[The task is to provide a secure login on a website which doesn&#8217;t necessarily have any other secure content. If you have an SSL certificate for your webserver you can use SSL just for the login to reduce the traffic going over SSL.Here is a basic login page which contains a form that directs the [...]]]></description>
		<wfw:commentRss>http://www.huyler.net/flexblog/2008/04/05/using-ssl-authentication-on-a-non-ssl-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ant for web developers</title>
		<link>http://www.huyler.net/flexblog/2008/04/02/ant-for-web-developers/</link>
		<comments>http://www.huyler.net/flexblog/2008/04/02/ant-for-web-developers/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 02:52:16 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[DHTML/JS]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.huyler.net/flexblog/2008/04/02/ant-for-web-developers/</guid>
		<description><![CDATA[I just spent the last day configuring an apache ant script to automate some tasks in our development environment and I figured I would share some of what I learned. If you are not familiar with Ant please take a look at apache&#8217;s documentation.  In the past I have made heavy use of shell scripts in [...]]]></description>
		<wfw:commentRss>http://www.huyler.net/flexblog/2008/04/02/ant-for-web-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A PHP Redirection Script</title>
		<link>http://www.huyler.net/flexblog/2007/12/08/a-php-redirection-script/</link>
		<comments>http://www.huyler.net/flexblog/2007/12/08/a-php-redirection-script/#comments</comments>
		<pubDate>Sat, 08 Dec 2007 18:07:36 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.huyler.net/flexblog/2007/12/08/a-php-redirection-script/</guid>
		<description><![CDATA[This script is intended to be used as an apache 404 error page. When an html document is not found, it will try to find the same document with the php extension, otherwise it will redirect the user to your home page. Save this script as redirect.php and create a file called &#8220;.htaccess&#8221; in your [...]]]></description>
		<wfw:commentRss>http://www.huyler.net/flexblog/2007/12/08/a-php-redirection-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Last Modified PHP Tag</title>
		<link>http://www.huyler.net/flexblog/2007/12/08/last-modified-php-tag/</link>
		<comments>http://www.huyler.net/flexblog/2007/12/08/last-modified-php-tag/#comments</comments>
		<pubDate>Sat, 08 Dec 2007 17:42:14 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.huyler.net/flexblog/2007/12/08/last-modified-php-tag/</guid>
		<description><![CDATA[Here is another quickie. This tag will add the date a file was last modified to the bottom of your page so guests will know how recent the information is. &#60;?php      /* filename: last_modified.php      * author: Christopher Huyler       * data: November 4, 2003      * Description:      * This snippit of code obtains the date the current  * file was last changed and displays it for viewers to see. * You will never have to update the last modified      * date on a page again.       *      * USE AT YOUR OWN RISK      */      echo date("F j, Y", filemtime($_SERVER['SCRIPT_FILENAME']))  ?&#62;]]></description>
		<wfw:commentRss>http://www.huyler.net/flexblog/2007/12/08/last-modified-php-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A basic PHP hit counter</title>
		<link>http://www.huyler.net/flexblog/2007/12/08/a-basic-php-hit-counter/</link>
		<comments>http://www.huyler.net/flexblog/2007/12/08/a-basic-php-hit-counter/#comments</comments>
		<pubDate>Sat, 08 Dec 2007 17:33:54 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.huyler.net/flexblog/2007/12/08/a-basic-php-hit-counter/</guid>
		<description><![CDATA[The following is a very basic PHP hit counter I wrote some time ago. It uses a browser cookie to prevent the count from increasing by the same user over a short period of time. &#60;!-- change this style to personalize the counter display --&#62; &#60;strong style="font: bold italic 18px/18px sans-serif;color:#A7C6E4"&#62; &#60;?php /* filename: hitcounter.php [...]]]></description>
		<wfw:commentRss>http://www.huyler.net/flexblog/2007/12/08/a-basic-php-hit-counter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

