<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.4" -->
<rss version="0.92">
<channel>
	<title>Simply Program</title>
	<link>http://simplyprogram.com</link>
	<description>Simply programming - It's a life style</description>
	<lastBuildDate>Thu, 17 Jul 2008 13:45:28 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Dynamic Variables in PHP</title>
		<description>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.

[CODE]

$foo = 'howdy';
$$foo = 'not howdy';

echo $$foo; //should return not ...</description>
		<link>http://simplyprogram.com/dynamic-variables-in-php/</link>
			</item>
	<item>
		<title>The Dancing Storm Trooper is back!</title>
		<description>Enjoy!

http://www.youtube.com/watch?v=g0dIpYw75jA&feature=user </description>
		<link>http://simplyprogram.com/the-dancing-storm-trooper-is-back/</link>
			</item>
	<item>
		<title>Document your PHP Application</title>
		<description>http://www.phpdoc.org/

Easy, Fast, and Efficient.

Just make sure your code is developed within a standard and you comment very well. </description>
		<link>http://simplyprogram.com/document-your-php-application/</link>
			</item>
	<item>
		<title>Casting variables in Javascript</title>
		<description>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".

[CODE]

//String
var string = "5.00";

//What would happen if we wanted to add another 5.00 ...</description>
		<link>http://simplyprogram.com/casting-variables-in-javascript/</link>
			</item>
	<item>
		<title>Display PHP errors for a single page</title>
		<description>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.
[CODE]

ini_set("display_errors", 1);
error_reporting(E_ALL);

[/CODE]

ini_set - allows you to mess with your php.ini file.
error_reporting - sets what kind of errors you ...</description>
		<link>http://simplyprogram.com/display-php-errors-for-a-single-page/</link>
			</item>
	<item>
		<title>Wordpress Plugins - Create a wordpress plugin from scratch</title>
		<description>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>
		<link>http://simplyprogram.com/wordpress-plugins-create-a-wordpress-plugin-from-scratch/</link>
			</item>
	<item>
		<title>TutorialMachine.com - Launches!</title>
		<description>TutorialMachine.com has finally launched, time to start loading Tutorials from photoshop to css design. </description>
		<link>http://simplyprogram.com/tutorialmachinecom-launches/</link>
			</item>
	<item>
		<title>YUI  Animation - Update</title>
		<description>Please review this great example by Dav Glass:

http://blog.davglass.com/files/yui/animseq/ </description>
		<link>http://simplyprogram.com/yui-animation-update/</link>
			</item>
	<item>
		<title>YUI resizeAll Function</title>
		<description>Just an example.

[CODE]

/**
* Collects all inner elements and resizes accordingly.
* @method resizeAll
*/
this.resizeAll = function () {
var tempEL = el;
var tempObj = tempEL.getElementsByTagName("img");
for(i=0;i </description>
		<link>http://simplyprogram.com/yui-resizeall-function/</link>
			</item>
	<item>
		<title>Htaccess and Htpasswd creator</title>
		<description>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>
		<link>http://simplyprogram.com/htaccess-and-htpasswd-creator/</link>
			</item>
</channel>
</rss>
