<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.4" -->
<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/"
	>

<channel>
	<title>Simply Program</title>
	<link>http://simplyprogram.com</link>
	<description>Simply programming - It's a life style</description>
	<pubDate>Thu, 17 Jul 2008 13:45:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.4</generator>
	<language>en</language>
			<item>
		<title>Dynamic Variables in PHP</title>
		<link>http://simplyprogram.com/dynamic-variables-in-php/</link>
		<comments>http://simplyprogram.com/dynamic-variables-in-php/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 13:43:51 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
	<category>PHP</category>
		<guid isPermaLink="false">http://simplyprogram.com/dynamic-variables-in-php/</guid>
		<description><![CDATA[When you start creating advanced applications that require different types of data that may be defined by a developer using your system you come across a very interesting issue.
Dynamic Variables...
They are quite easy to master, just look at the below example.
PLAIN TEXT
CODE:




$foo = 'howdy';


$$foo = 'not howdy';


&#160;


echo $$foo; //should return not howdy 






Learn more by [...]]]></description>
			<content:encoded><![CDATA[<p>When you start creating advanced applications that require different types of data that may be defined by a developer using your system you come across a very interesting issue.</p>
<p>Dynamic Variables...</p>
<p>They are quite easy to master, just look at the below example.</p>
<div class="igBar"><span id="lcode-2"><a href="#" onclick="javascript:showPlainTxt('code-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span><br />
<div id="code-2">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$foo = <span style="color:#CC0000;">'howdy'</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">$$foo = <span style="color:#CC0000;">'not howdy'</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo $$foo; <span style="color:#FF9933; font-style:italic;">//should return not howdy </span></div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Learn more by going here:</p>
<p><a xhref="http://www.php.net/manual/en/language.variables.variable.php">http://www.php.net/manual/en/language.variables.variable.php</a>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/dynamic-variables-in-php/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>The Dancing Storm Trooper is back!</title>
		<link>http://simplyprogram.com/the-dancing-storm-trooper-is-back/</link>
		<comments>http://simplyprogram.com/the-dancing-storm-trooper-is-back/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 17:48:10 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Make you smile</category>
		<guid isPermaLink="false">http://simplyprogram.com/the-dancing-storm-trooper-is-back/</guid>
		<description><![CDATA[Enjoy!
http://www.youtube.com/watch?v=g0dIpYw75jA&#038;feature=user

]]></description>
			<content:encoded><![CDATA[<p>Enjoy!</p>
<p>http://www.youtube.com/watch?v=g0dIpYw75jA&#038;feature=user
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/the-dancing-storm-trooper-is-back/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Document your PHP Application</title>
		<link>http://simplyprogram.com/document-your-php-application/</link>
		<comments>http://simplyprogram.com/document-your-php-application/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 13:28:41 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
	<category>PHP</category>
		<guid isPermaLink="false">http://simplyprogram.com/document-your-php-application/</guid>
		<description><![CDATA[http://www.phpdoc.org/
Easy, Fast, and Efficient.
Just make sure your code is developed within a standard and you comment very well.

]]></description>
			<content:encoded><![CDATA[<p>http://www.phpdoc.org/</p>
<p>Easy, Fast, and Efficient.</p>
<p>Just make sure your code is developed within a standard and you comment very well.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/document-your-php-application/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Casting variables in Javascript</title>
		<link>http://simplyprogram.com/casting-variables-in-javascript/</link>
		<comments>http://simplyprogram.com/casting-variables-in-javascript/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 15:23:06 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
	<category>Javascript</category>
		<guid isPermaLink="false">http://simplyprogram.com/casting-variables-in-javascript/</guid>
		<description><![CDATA[In some situations we are required to take a value that was intended to be a string and convert it to a numerical value for calculations.
In this situation we would implement a form of variable control called "Casting".
PLAIN TEXT
CODE:




//String


var string = "5.00";


&#160;


//What would happen if we wanted to add another 5.00 to string?


//Well, it would [...]]]></description>
			<content:encoded><![CDATA[<p>In some situations we are required to take a value that was intended to be a string and convert it to a numerical value for calculations.</p>
<p>In this situation we would implement a form of variable control called "Casting".</p>
<div class="igBar"><span id="lcode-4"><a href="#" onclick="javascript:showPlainTxt('code-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span><br />
<div id="code-4">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//String</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">var string = <span style="color:#CC0000;">"5.00"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//What would happen if we wanted to add another 5.00 to string?</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//Well, it would append the 5.00 to the original 5.00 - Example: 5.005.00</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//We need to Cast &quot;string&quot; so that we can do numerical calculations.</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">var numeric = parseFloat<span style="color:#006600; font-weight:bold;">&#40;</span>string<span style="color:#006600; font-weight:bold;">&#41;</span>+<span style="color:#800000;color:#800000;">5</span>.<span style="color:#800000;color:#800000;">00</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//You can use</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//parseFloat - number with a decimal point.</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF9933; font-style:italic;">//parseInt - whole number. </span></div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Simple and effective.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/casting-variables-in-javascript/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Display PHP errors for a single page</title>
		<link>http://simplyprogram.com/display-php-errors-for-a-single-page/</link>
		<comments>http://simplyprogram.com/display-php-errors-for-a-single-page/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 14:12:42 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
	<category>PHP</category>
		<guid isPermaLink="false">http://simplyprogram.com/display-php-errors-for-a-single-page/</guid>
		<description><![CDATA[How do you show errors for a single php script when the entire server has the enviorment variable "display_errors" set to 0?
Simple - place the below code at the top of your script.
PLAIN TEXT
CODE:




ini_set&#40;"display_errors", 1&#41;;


error_reporting&#40;E_ALL&#41;; 






ini_set - allows you to mess with your php.ini file.
error_reporting - sets what kind of errors you wish to show.

]]></description>
			<content:encoded><![CDATA[<p>How do you show errors for a single php script when the entire server has the enviorment variable "display_errors" set to 0?</p>
<p>Simple - place the below code at the top of your script.</p>
<div class="igBar"><span id="lcode-6"><a href="#" onclick="javascript:showPlainTxt('code-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span><br />
<div id="code-6">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">ini_set<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">"display_errors"</span>, <span style="color:#800000;color:#800000;">1</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">error_reporting<span style="color:#006600; font-weight:bold;">&#40;</span>E_ALL<span style="color:#006600; font-weight:bold;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>ini_set - allows you to mess with your php.ini file.<br />
error_reporting - sets what kind of errors you wish to show.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/display-php-errors-for-a-single-page/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Wordpress Plugins - Create a wordpress plugin from scratch</title>
		<link>http://simplyprogram.com/wordpress-plugins-create-a-wordpress-plugin-from-scratch/</link>
		<comments>http://simplyprogram.com/wordpress-plugins-create-a-wordpress-plugin-from-scratch/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 13:35:06 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
	<category>PHP</category>
		<guid isPermaLink="false">http://simplyprogram.com/wordpress-plugins-create-a-wordpress-plugin-from-scratch/</guid>
		<description><![CDATA[My current employer is in need of a very simple advertisement plugin to be created for their WordPress system - so of course I have decided to use this as an opportunity to create a custom plugin for experimental reasons.
Plugin Title: Make Me Money

Lets see if it does haha.

]]></description>
			<content:encoded><![CDATA[<p>My current employer is in need of a very simple advertisement plugin to be created for their WordPress system - so of course I have decided to use this as an opportunity to create a custom plugin for experimental reasons.</p>
<p>Plugin Title: <strong>Make Me Money<br />
</strong></p>
<p>Lets see if it does haha.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/wordpress-plugins-create-a-wordpress-plugin-from-scratch/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>TutorialMachine.com - Launches!</title>
		<link>http://simplyprogram.com/tutorialmachinecom-launches/</link>
		<comments>http://simplyprogram.com/tutorialmachinecom-launches/#comments</comments>
		<pubDate>Mon, 26 May 2008 16:02:33 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Annoucements</category>
		<guid isPermaLink="false">http://simplyprogram.com/tutorialmachinecom-launches/</guid>
		<description><![CDATA[TutorialMachine.com has finally launched, time to start loading Tutorials from photoshop to css design.

]]></description>
			<content:encoded><![CDATA[<p>TutorialMachine.com has finally launched, time to start loading Tutorials from photoshop to css design.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/tutorialmachinecom-launches/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>YUI  Animation - Update</title>
		<link>http://simplyprogram.com/yui-animation-update/</link>
		<comments>http://simplyprogram.com/yui-animation-update/#comments</comments>
		<pubDate>Sat, 24 May 2008 13:39:10 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
	<category>Javascript</category>
		<guid isPermaLink="false">http://simplyprogram.com/yui-animation-update/</guid>
		<description><![CDATA[Please review this great example by Dav Glass:
http://blog.davglass.com/files/yui/animseq/

]]></description>
			<content:encoded><![CDATA[<p>Please review this great example by Dav Glass:</p>
<p>http://blog.davglass.com/files/yui/animseq/
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/yui-animation-update/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>YUI resizeAll Function</title>
		<link>http://simplyprogram.com/yui-resizeall-function/</link>
		<comments>http://simplyprogram.com/yui-resizeall-function/#comments</comments>
		<pubDate>Fri, 23 May 2008 11:42:15 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
	<category>Javascript</category>
		<guid isPermaLink="false">http://simplyprogram.com/yui-resizeall-function/</guid>
		<description><![CDATA[Just an example.
PLAIN TEXT
CODE:




/**


* Collects all inner elements and resizes accordingly.


* @method resizeAll


*/


this.resizeAll = function &#40;&#41; &#123;


var tempEL = el;


var tempObj = tempEL.getElementsByTagName&#40;"img"&#41;;


for&#40;i=0;i&#60;tempObj.length;i++&#41;&#123;


var tempAnimation = new YAHOO.util.Anim&#40;tempObj&#91;i&#93;.getAttribute&#40;"id"&#41;, this.attributes, this.duration, this.method&#41;;


tempAnimation.animate&#40;&#41;;


&#125;


var tempObj = tempEL.getElementsByTagName&#40;"input"&#41;;


for&#40;i=0;i&#60;tempObj.length;i++&#41;&#123;


var tempAnimation = new YAHOO.util.Anim&#40;tempObj&#91;i&#93;.getAttribute&#40;"id"&#41;, this.attributes, this.duration, this.method&#41;;


tempAnimation.animate&#40;&#41;;


&#125;


&#160;


&#125; 







]]></description>
			<content:encoded><![CDATA[<p>Just an example.</p>
<div class="igBar"><span id="lcode-8"><a href="#" onclick="javascript:showPlainTxt('code-8'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span><br />
<div id="code-8">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">/**</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">* Collects all inner elements and resizes accordingly.</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">* @method resizeAll</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000;">*/</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">this.<span style="">resizeAll</span> = function <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">var tempEL = el;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">var tempObj = tempEL.<span style="">getElementsByTagName</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">"img"</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">for<span style="color:#006600; font-weight:bold;">&#40;</span>i=<span style="color:#800000;color:#800000;">0</span>;i&lt;tempObj.<span style="">length</span>;i++<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">var tempAnimation = new YAHOO.<span style="">util</span>.<span style="">Anim</span><span style="color:#006600; font-weight:bold;">&#40;</span>tempObj<span style="color:#006600; font-weight:bold;">&#91;</span>i<span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="">getAttribute</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">"id"</span><span style="color:#006600; font-weight:bold;">&#41;</span>, this.<span style="">attributes</span>, this.<span style="">duration</span>, this.<span style="">method</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">tempAnimation.<span style="">animate</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">var tempObj = tempEL.<span style="">getElementsByTagName</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">"input"</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">for<span style="color:#006600; font-weight:bold;">&#40;</span>i=<span style="color:#800000;color:#800000;">0</span>;i&lt;tempObj.<span style="">length</span>;i++<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">var tempAnimation = new YAHOO.<span style="">util</span>.<span style="">Anim</span><span style="color:#006600; font-weight:bold;">&#40;</span>tempObj<span style="color:#006600; font-weight:bold;">&#91;</span>i<span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="">getAttribute</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">"id"</span><span style="color:#006600; font-weight:bold;">&#41;</span>, this.<span style="">attributes</span>, this.<span style="">duration</span>, this.<span style="">method</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">tempAnimation.<span style="">animate</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/yui-resizeall-function/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Htaccess and Htpasswd creator</title>
		<link>http://simplyprogram.com/htaccess-and-htpasswd-creator/</link>
		<comments>http://simplyprogram.com/htaccess-and-htpasswd-creator/#comments</comments>
		<pubDate>Thu, 22 May 2008 13:19:53 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
	<category>Server</category>
		<guid isPermaLink="false">http://simplyprogram.com/htaccess-and-htpasswd-creator/</guid>
		<description><![CDATA[I am always on the lookout for a nice simple htpasswd generator and I found a pretty nice one.
http://www.htaccesstools.com/htpasswd-generator/
Enjoy!

]]></description>
			<content:encoded><![CDATA[<p>I am always on the lookout for a nice simple htpasswd generator and I found a pretty nice one.</p>
<p>http://www.htaccesstools.com/htpasswd-generator/</p>
<p>Enjoy!
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/htaccess-and-htpasswd-creator/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
