<?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>Easy PHP Programming</title>
	<atom:link href="http://easyphpprogramming.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://easyphpprogramming.net</link>
	<description>PHP Made Easy</description>
	<lastBuildDate>Wed, 10 Feb 2010 14:36:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>More into the syntax of PHP</title>
		<link>http://easyphpprogramming.net/basic-programming/more-into-the-syntax-of-php/</link>
		<comments>http://easyphpprogramming.net/basic-programming/more-into-the-syntax-of-php/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 14:36:07 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Basic Programming]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[PHP Syntax]]></category>
		<category><![CDATA[Program]]></category>

		<guid isPermaLink="false">http://easyphpprogramming.net/uncategorized/more-into-the-syntax-of-php/</guid>
		<description><![CDATA[
As you might have seen, all of the PHP statement ends with �;� which would be somewhat similar to Perl. The valid HTML code that was handed back to the server was :



Who are You?

My name is MacGyver.


More in the coming posts when we dig deeper as we widen our understanding of PHP.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://%25E2%259C%258E.net/category/php/"><img src="/wp-content/uploads/scraped/19.jpg"/></a>
<p>As you might have seen, all of the PHP statement ends with �;� which would be somewhat similar to Perl. The valid HTML code that was handed back to the server was :<br />
<html><br />
<head></head><br />
<body><br />
Who are You?<br />
<br />
My name is MacGyver.<br />
</body><br />
</html></p>
<p>More in the coming posts when we dig deeper as we widen our understanding of PHP.</p>
]]></content:encoded>
			<wfw:commentRss>http://easyphpprogramming.net/basic-programming/more-into-the-syntax-of-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dissecting/Understanding the first program</title>
		<link>http://easyphpprogramming.net/basic-programming/dissectingunderstanding-the-first-program/</link>
		<comments>http://easyphpprogramming.net/basic-programming/dissectingunderstanding-the-first-program/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 14:35:10 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Basic Programming]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Parser]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://easyphpprogramming.net/uncategorized/dissectingunderstanding-the-first-program/</guid>
		<description><![CDATA[
The first post had you making a program that was equivalent to the &#8220;Hello World&#8221; program used for teaching basics of a programming language and here&#8217;s how it worked. When the script was requested by opening the web page, Apache intercepted the request and passed it onto PHP which parsed the script looking for the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mcleaninternational.com/testimonials"><img src="/wp-content/uploads/scraped/18.jpg"/></a>
<p>The first post had you making a program that was equivalent to the &#8220;Hello World&#8221; program used for teaching basics of a programming language and here&#8217;s how it worked. When the script was requested by opening the web page, Apache intercepted the request and passed it onto PHP which parsed the script looking for the code in between the <?PHP "?> terminators and then doing the requested operation which was to display the text contained within the echo command. This result was given back to the server then again to the client. The output contained a valid HTML so the browser was able to understand it and execute the requested operation.</p>
]]></content:encoded>
			<wfw:commentRss>http://easyphpprogramming.net/basic-programming/dissectingunderstanding-the-first-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Array Combine</title>
		<link>http://easyphpprogramming.net/basic-programming/array-combine/</link>
		<comments>http://easyphpprogramming.net/basic-programming/array-combine/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 11:15:36 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Basic Programming]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[Array manipulation]]></category>
		<category><![CDATA[Programming PHP]]></category>

		<guid isPermaLink="false">http://easyphpprogramming.net/uncategorized/array-combine/</guid>
		<description><![CDATA[
This function combines two arrays where the first array is treated as the key and the second array as the contents of the said table. The syntax goes like this : array_combine(array1,array2), wherein the array1 is the table which contains the keys values, and the array2 is the contents. It should be noted that these [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.fsharphelp.com/array/Array-Combine.aspx"><img src="/wp-content/uploads/scraped/26.jpg"/></a>
<p>This function combines two arrays where the first array is treated as the key and the second array as the contents of the said table. The syntax goes like this : array_combine(array1,array2), wherein the array1 is the table which contains the keys values, and the array2 is the contents. It should be noted that these two tables or array�s should have equal amounts of contents for it would become problematic if there was an error in the combination process. An example of the process is shown below:</p>
<p><?php<br />
$a1=array('a','b','c','d')<br />
$a2=array2("Mouse","Rat","Rodent","Mice")<br />
print_r(array_combine($a1,$a2))<br />
?></p>
<p>The output of which would give us a single table :</p>
<p>Array ( [a] => Mouse [b] => Rat [c] => Rodent [d]  => Mice )</p>
<p>The function combined the two tables giving a single table that combines the keys and the contents. More in-depth discussion on the different array functions which in future posts would be the backbone of applications we will be building.</p>
]]></content:encoded>
			<wfw:commentRss>http://easyphpprogramming.net/basic-programming/array-combine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP with Dreamweaver</title>
		<link>http://easyphpprogramming.net/basic-programming/php-with-dreamweaver/</link>
		<comments>http://easyphpprogramming.net/basic-programming/php-with-dreamweaver/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 08:33:24 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Basic Programming]]></category>

		<guid isPermaLink="false">http://easyphpprogramming.net/basic-programming/php-with-dreamweaver/</guid>
		<description><![CDATA[
Once you open your PHP application such as Dreamweaver, chances are you will be overwhelmed on what you can do with it. In the early stages, you will find yourself being taken aback for the reason that you will see a lot of features such as command lines and scripts that you can use. 
Dreamweaver [...]]]></description>
			<content:encoded><![CDATA[<p><center><a href='http://www.ryerson.ca/acs/usersguide/graphics/dreamweaver/dreamweaver8main.gif' title='Dreamweaver 8'><img src='http://easyphpprogramming.net/wp-content/uploads/2008/03/dreamweaver8main.gif' width=250 alt='Dreamweaver 8' /></a></center><br />
Once you open your PHP application such as Dreamweaver, chances are you will be overwhelmed on what you can do with it. In the early stages, you will find yourself being taken aback for the reason that you will see a lot of features such as command lines and scripts that you can use. </p>
<p>Dreamweaver does allow you advanced programming with PHP. However, do remember that you have to start from the bottom. Learning the basics first and slowly integrating them as you go along the way will be the best way to approach it. In short, don’t let your enthusiasm for the software get the best of you. Take it one step at a time. </p>
]]></content:encoded>
			<wfw:commentRss>http://easyphpprogramming.net/basic-programming/php-with-dreamweaver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fooling Around with PHP</title>
		<link>http://easyphpprogramming.net/basic-programming/fooling-around-with-php/</link>
		<comments>http://easyphpprogramming.net/basic-programming/fooling-around-with-php/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 08:31:11 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Basic Programming]]></category>

		<guid isPermaLink="false">http://easyphpprogramming.net/basic-programming/fooling-around-with-php/</guid>
		<description><![CDATA[
Although some people may not know it, you can fool around with PHP programming and come up with surprisingly unique yet attractive sites. This includes placing images along with some new scripts which may turn out to be to your advantage in the end as far as presentation is concerned. 
So as far as PHP [...]]]></description>
			<content:encoded><![CDATA[<p><center><a href='http://www.theaterwebsiteservices.com/images/php.jpg' title='PHP Programming'><img src='http://easyphpprogramming.net/wp-content/uploads/2008/03/php.jpg' width=250 alt='PHP Programming' /></a></center><br />
Although some people may not know it, you can fool around with PHP programming and come up with surprisingly unique yet attractive sites. This includes placing images along with some new scripts which may turn out to be to your advantage in the end as far as presentation is concerned. </p>
<p>So as far as PHP programming to being too technical, think again. You won’t know what you can do until you are upfront with the application itself. Once you do get upfront with it, don’t be surprised if you suddenly find yourself wanting to learn more about this line of programming. It will surely be an interesting journey into programming and development on your end.</p>
]]></content:encoded>
			<wfw:commentRss>http://easyphpprogramming.net/basic-programming/fooling-around-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP’S POPULARITY</title>
		<link>http://easyphpprogramming.net/basic-programming/php%e2%80%99s-popularity/</link>
		<comments>http://easyphpprogramming.net/basic-programming/php%e2%80%99s-popularity/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 16:11:42 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[Basic Programming]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[PHP popularity]]></category>

		<guid isPermaLink="false">http://easyphpprogramming.net/basic-programming/php%e2%80%99s-popularity/</guid>
		<description><![CDATA[
PHP is considered to be one of the most popular server-side scripting systems on the web. And because of PHP’s popularity, a new generation of programmers who are familiar with PHP alone makes it possible to open a “command line interface” for PHP. Along with GUI functions support (Gtk or ncurses support), CLI or “command [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://easyphpprogramming.net/wp-content/uploads/2008/05/smgutmans.jpg' title='smgutmans.jpg'><img src='http://easyphpprogramming.net/wp-content/uploads/2008/05/smgutmans.jpg' alt='smgutmans.jpg' /></a></p>
<p>PHP is considered to be one of the most popular server-side scripting systems on the web. And because of PHP’s popularity, a new generation of programmers who are familiar with PHP alone makes it possible to open a “command line interface” for PHP. Along with GUI functions support (Gtk or ncurses support), CLI or “command line interface” is a process of interacting with a computer by providing lines of text commands in written structure either from a keyboard input or from a script. This whole process of command line interface is considered to be a major step for PHP as it stands for its implementation as a genuine programming language. </p>
]]></content:encoded>
			<wfw:commentRss>http://easyphpprogramming.net/basic-programming/php%e2%80%99s-popularity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: server-side scripting</title>
		<link>http://easyphpprogramming.net/basic-programming/php-server-side-scripting/</link>
		<comments>http://easyphpprogramming.net/basic-programming/php-server-side-scripting/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 13:06:58 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[Basic Programming]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[server-side scripting]]></category>

		<guid isPermaLink="false">http://easyphpprogramming.net/basic-programming/php-server-side-scripting/</guid>
		<description><![CDATA[
PHP’s principal focus is server-side scripting which is a web server technology in that involves the process of running a script directly on the web server to create dynamic HTML pages thus fulfilling the user’s request. PHP is originally intended to generate dynamic web pages and its server-side scripting function is the same with other [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://easyphpprogramming.net/wp-content/uploads/2008/05/cs.jpg' title='cs.jpg'><img src='http://easyphpprogramming.net/wp-content/uploads/2008/05/cs.jpg' alt='cs.jpg' /></a></p>
<p>PHP’s principal focus is server-side scripting which is a web server technology in that involves the process of running a script directly on the web server to create dynamic HTML pages thus fulfilling the user’s request. PHP is originally intended to generate dynamic web pages and its server-side scripting function is the same with other server-side scripting languages that offer dynamic content from a web server to a client, such as ASP.NET system of Microsoft, Sun Microsystems’s JavaServer Pages and mod perl. PHP attracted development of various frameworks (code library made for helping in software development) as well that give building blocks and a design structure to promote rapid application development (RAD).</p>
]]></content:encoded>
			<wfw:commentRss>http://easyphpprogramming.net/basic-programming/php-server-side-scripting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Debugging</title>
		<link>http://easyphpprogramming.net/debugging/php-debugging/</link>
		<comments>http://easyphpprogramming.net/debugging/php-debugging/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 12:48:48 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[Debugging]]></category>

		<guid isPermaLink="false">http://easyphpprogramming.net/debugging/php-debugging/</guid>
		<description><![CDATA[
There are five different categories of an error message that the PHP interpreter may fall into:
PARSE ERROR: usually problems with the syntax of the program. This includes forgetting to place a semi-colon by the end of a statement. The interpreter will stop running when it encounters a parse error.
FATAL ERROR: this means a severe problem [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nusphere.com/products/php_debugger.htm"><img src="/wp-content/uploads/scraped/68.jpg"/></a>
<p>There are five different categories of an error message that the PHP interpreter may fall into:<br />
PARSE ERROR: usually problems with the syntax of the program. This includes forgetting to place a semi-colon by the end of a statement. The interpreter will stop running when it encounters a parse error.<br />
FATAL ERROR: this means a severe problem with the program content. Like in a parse error, the interpreter will also stop running when encountering a fatal error.<br />
WARNING: an advisory that the interpreter gives whenever there is something fishy in your program. But unlike the first two errors, the interpreter will still keep on running.<br />
NOTICE: this is a tip from the PHP interpreter.</p>
]]></content:encoded>
			<wfw:commentRss>http://easyphpprogramming.net/debugging/php-debugging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Variables Used</title>
		<link>http://easyphpprogramming.net/basic-programming/variables-used/</link>
		<comments>http://easyphpprogramming.net/basic-programming/variables-used/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 12:58:05 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[Basic Programming]]></category>

		<guid isPermaLink="false">http://easyphpprogramming.net/basic-programming/variables-used/</guid>
		<description><![CDATA[
Variables are used to temporarily keep or store something that you want to save. When the time comes that you will be needing them, recall the variables and they will give you the information that you stored for you to change, delete or edit it. 

‘Hello Haroon’ is the information that you want to save [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.emeraldinsight.com/Insight/ViewContentServlet%3FFilename%3DPublished/EmeraldFullTextArticle/Articles/0360110304.html"><img src="/wp-content/uploads/scraped/72.jpg"/></a>
<p>Variables are used to temporarily keep or store something that you want to save. When the time comes that you will be needing them, recall the variables and they will give you the information that you stored for you to change, delete or edit it. </p>
<p><?php<br />
$message = "Hello Haroon";<br />
  echo "PHP Tutorial";<br />
echo $message;<br />
?></p>
<p>‘Hello Haroon’ is the information that you want to save temporarily, while the message ‘PHP Tutorial’ is displayed. </p>
<p>The output of the program will be: PHP TutorialHello Haroon</p>
<p>In PHP, $ is used to define a variable. PHP, unlike C or Java, is a loose-typing scripting language. </p>
]]></content:encoded>
			<wfw:commentRss>http://easyphpprogramming.net/basic-programming/variables-used/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bugs and How to Deal With Them</title>
		<link>http://easyphpprogramming.net/information/bugs-and-how-to-deal-with-them/</link>
		<comments>http://easyphpprogramming.net/information/bugs-and-how-to-deal-with-them/#comments</comments>
		<pubDate>Wed, 27 May 2009 11:05:16 +0000</pubDate>
		<dc:creator>Bart</dc:creator>
				<category><![CDATA[Information]]></category>

		<guid isPermaLink="false">http://easyphpprogramming.net/?p=146</guid>
		<description><![CDATA[No bug spray can get rid of the many programming bugs that are detected by the parser as you compile the program to come up with the final product. As any programmer knows, program bugs are as sure as the existence of and energy drink by their side, and though most of them may be [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://easyphpprogramming.net/wp-content/uploads/2009/05/phpbugsite.jpg" alt="phpbugsite" title="phpbugsite" width="148" height="70" class="alignleft size-full wp-image-147" />No bug spray can get rid of the many programming bugs that are detected by the parser as you compile the program to come up with the final product. As any <a href="http://opensourcedailyguide.com/">programmer</a> knows, program bugs are as sure as the existence of and energy drink by their side, and though most of them may be the result of simple typo&#8217;s and other naming problems one can be assured of an unusual one that defies all your efforts and phone calls to buddies. What do you do? Ask the community of course, through the <a href="http://bugs.php.net/">PHP Bugs site</a> where they are compiled as reference for all who use PHP.<span id="more-146"></span><br />
You can also report an unknown bug that as you know is unknown and may be unknowingly causing the same errors around the world. But you should observe proper decorum in the forum, being sure to do an extensive search before filing an error/bug report. The archive contains many documented errors and along with that of course, is a probable solution from others like you who may have dealt with the same problem themselves.</p>
]]></content:encoded>
			<wfw:commentRss>http://easyphpprogramming.net/information/bugs-and-how-to-deal-with-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
