<?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"
	>

<channel>
	<title>PHP Programming 101</title>
	<atom:link href="http://phpprogramming101.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://phpprogramming101.com</link>
	<description>Your basic PHP tutorial site.</description>
	<pubDate>Sat, 23 Aug 2008 01:09:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Arrays</title>
		<link>http://phpprogramming101.com/basic-programming/arrays/</link>
		<comments>http://phpprogramming101.com/basic-programming/arrays/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 11:13:00 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Basic Programming]]></category>

		<category><![CDATA[Sample Code]]></category>

		<category><![CDATA[Array Functions]]></category>

		<category><![CDATA[PHP Programming]]></category>

		<guid isPermaLink="false">http://phpprogramming101.com/uncategorized/arrays/</guid>
		<description><![CDATA[Arrays are what tables are to C-based programming languages and what databases are for SQL-based languages. Arrays or tables as they are sometimes called can be used to store the contents of several variables and to create one, you use the following syntax:
Array(key=>value)
The array in the syntax refers to the name of the array being [...]]]></description>
			<content:encoded><![CDATA[<p>Arrays are what tables are to C-based programming languages and what databases are for SQL-based languages. Arrays or tables as they are sometimes called can be used to store the contents of several variables and to create one, you use the following syntax:</p>
<p>Array(key=>value)</p>
<p>The array in the syntax refers to the name of the array being created, the key is the index which is set automatically to a numeric character or string if none is specified. Value is the assigned value or content of the said array which can be seen easily in the following array creation example:</p>
<p><?php<br />
$b=array('z'=>&#8216;Comedy&#8221;,&#8217;y'=>&#8221;Horror&#8221;,&#8217;x;&#8217;=>&#8221;Action&#8221;);<br />
print_r($b);<br />
?></p>
<p>This piece of code would produce an output of :</p>
<p>Array ([0] => Comedy [1] => Horror [2] => Action)</p>
<p>More on array functions in the next posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogramming101.com/basic-programming/arrays/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Getting Started with PHP Programming</title>
		<link>http://phpprogramming101.com/basic-programming/getting-started-with-php-programming/</link>
		<comments>http://phpprogramming101.com/basic-programming/getting-started-with-php-programming/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 14:31:43 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Basic Programming]]></category>

		<category><![CDATA[Basic PHP]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Programming Concepts]]></category>

		<guid isPermaLink="false">http://phpprogramming101.com/uncategorized/getting-started-with-php-programming/</guid>
		<description><![CDATA[The first step to get us on our way to programming in PHP would be to set up an ideal development environment. You need a Web Server software like Apache (which would be what we are going to use) which is only one of many out there. Most of these web servers are open-source meaning [...]]]></description>
			<content:encoded><![CDATA[<p>The first step to get us on our way to programming in PHP would be to set up an ideal development environment. You need a <strong><a href="http://en.wikipedia.org/wiki/Comparison_of_web_servers">Web Server</a></strong> software like Apache (which would be what we are going to use) which is only one of many out there. Most of these web servers are open-source meaning that they are free. Now, being free doesnï¿½t mean that they are not up to standards for there are standards that are set by independent groups that are comprised of the many developers who together formulate or give a loosely defined set of standards for others to follow. Apache has versions for Linux but there are also for the Windows, Unix and Mac OS. The <strong><a href="http://www.php.net/manual/en/installation.php">installer</a></strong> can be downloaded along with the detailed <strong><a href="http://www.php.net/">manual</a></strong> from PHP.net</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogramming101.com/basic-programming/getting-started-with-php-programming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP BASIC CODING (cont&#8230;)</title>
		<link>http://phpprogramming101.com/uncategorized/php-basic-coding-cont-2/</link>
		<comments>http://phpprogramming101.com/uncategorized/php-basic-coding-cont-2/#comments</comments>
		<pubDate>Fri, 30 May 2008 01:19:01 +0000</pubDate>
		<dc:creator>binary</dc:creator>
		
		<category><![CDATA[Advanced Programming]]></category>

		<category><![CDATA[Basic Programming]]></category>

		<category><![CDATA[Codes]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Sample Code]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://phpprogramming101.com/uncategorized/php-basic-coding-cont-2/</guid>
		<description><![CDATA[(cont&#8230;.)
V. Operators in PHP
*Arithmetic Operators*
+ addition
- subtraction
* multiplication
/ division
% modulus (division remainder)
++ increment
&#8211; decrement
*Comparison Operators*
== equal to
!= not equal
&#62; greater than
= greater than or equal
&#60;= less than or equal
*Logical Operators*
&#38;&#38; and
&#124;&#124; or
! not 
I know its self explanatory&#8230;
VI. IF&#8230;.Else Statements
If (condition)
	//*Things to be executed if the answer to the condition is true*//
else
	//*Things to be executed [...]]]></description>
			<content:encoded><![CDATA[<p>(cont&#8230;.)</p>
<p>V. Operators in PHP</p>
<p>*Arithmetic Operators*</p>
<p>+ addition<br />
- subtraction<br />
* multiplication<br />
/ division<br />
% modulus (division remainder)<br />
++ increment<br />
&#8211; decrement</p>
<p>*Comparison Operators*<br />
== equal to<br />
!= not equal<br />
&gt; greater than<br />
= greater than or equal<br />
&lt;= less than or equal</p>
<p>*Logical Operators*<br />
&amp;&amp; and<br />
|| or<br />
! not </p>
<p>I know its self explanatory&#8230;</p>
<p>VI. IF&#8230;.Else Statements</p>
<p>If (condition)<br />
	//*Things to be executed if the answer to the condition is true*//<br />
else<br />
	//*Things to be executed if the answer to the condition is false*//</p>
<p>If&#8230;else statement is use if the user wants to execute a set of code when the condition is true and another if the condition is not true.</p>
<p>VII. Switch Statement</p>
<p>switch (expression)<br />
{<br />
case 1:<br />
	//*code to be executed*//<br />
	break;<br />
case 2:<br />
	//*code to be executed*//<br />
	break;<br />
default:<br />
	//*code to be executed*//<br />
	break;<br />
}</p>
<p>Switch statement is use if you want to select one of many blocks of code to be executed. this statement is used to avoid long blocks of if&#8230;elseif..else.</p>
<p>VIII. Looping Statement</p>
<p>while(condition)<br />
code to be executed;</p>
<p>While statement is used to execute a block of code if and as long as a condition is true</p>
<p>do<br />
{<br />
code to be executed;<br />
}while (condition)</p>
<p>Do&#8212;while statement is used to execute a block of code at least once and it will repeat the loop as long as the condition is true.</p>
<p>for each (array as value)<br />
{<br />
code to be executed;<br />
}</p>
<p>For each statement is used to loop through arrays.</p>
<p>I think this is already enough and it has added new knowledge to those who are new in PHP&#8230; good luck and happy coding&#8230;</p>
<p><img src='http://phpprogramming101.com/wp-content/uploads/2008/06/php_2.thumbnail.jpg' alt='php_2.jpg' /></p>
<p>image source: www.cass.rrhosting.com</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogramming101.com/uncategorized/php-basic-coding-cont-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP BASIC CODING (cont&#8230;)</title>
		<link>http://phpprogramming101.com/uncategorized/php-basic-coding-cont/</link>
		<comments>http://phpprogramming101.com/uncategorized/php-basic-coding-cont/#comments</comments>
		<pubDate>Thu, 29 May 2008 01:16:13 +0000</pubDate>
		<dc:creator>binary</dc:creator>
		
		<category><![CDATA[Advanced Programming]]></category>

		<category><![CDATA[Basic Programming]]></category>

		<category><![CDATA[Codes]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Sample Code]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://phpprogramming101.com/uncategorized/php-basic-coding-cont/</guid>
		<description><![CDATA[(cont&#8230;)
III. PHP Variables
$variablename=value;
Variables are used for storing values such as text string or arrays. And all variables in PHP starts with a ($) dollar sign. There are various rules to be follow before naming a variable. 1) A variable name must start with a letter or an underscore. 2) A variable name can only contain [...]]]></description>
			<content:encoded><![CDATA[<p>(cont&#8230;)<br />
III. PHP Variables</p>
<p>$variablename=value;</p>
<p>Variables are used for storing values such as text string or arrays. And all variables in PHP starts with a ($) dollar sign. There are various rules to be follow before naming a variable. 1) A variable name must start with a letter or an underscore. 2) A variable name can only contain alpha-numeric characters and underscores. Special characters are not allowed. 3) A variable name should not contain spaces.</p>
<p>IV.PHP Strings</p>
<p>$wrd=&#8221;Hello World&#8221;;<br />
print $wrd;</p>
<p>Strings variables are used for values that contain character strings. The only operator that can be used on string is concatenation denoted by the sign (.) period.</p>
<p>$wrd1=&#8221;Hello World&#8221;;<br />
$wrd2=&#8221;Good day&#8221;;<br />
print $wrd1.&#8221;".$wrd2</p>
<p>You can count the nos. of string with the function strlen().</p>
<p>Print strlen(&#8221;HelloWorld and GoodDay&#8221;);</p>
<p>to be continued&#8230;</p>
<p><img src='http://phpprogramming101.com/wp-content/uploads/2008/06/php-designer3php-editorscom.jpg' alt='php-designer3php-editorscom.jpg' /></p>
<p>image source: www.php-editors.com</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogramming101.com/uncategorized/php-basic-coding-cont/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP BASIC CODING</title>
		<link>http://phpprogramming101.com/uncategorized/php-basic-coding/</link>
		<comments>http://phpprogramming101.com/uncategorized/php-basic-coding/#comments</comments>
		<pubDate>Fri, 23 May 2008 01:09:42 +0000</pubDate>
		<dc:creator>binary</dc:creator>
		
		<category><![CDATA[Basic Programming]]></category>

		<category><![CDATA[Codes]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Sample Code]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://phpprogramming101.com/uncategorized/php-basic-coding/</guid>
		<description><![CDATA[Here are some of the basic things to be in mind while coding your dynamic web pages using PHP.
I. PHP basic syntax
PHP is a script that is place inside a HTML document that&#8217;s why you need to put the basic codes of HTML such as  and .
PHP is open with the (?)question mark followed [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some of the basic things to be in mind while coding your dynamic web pages using PHP.</p>
<p>I. PHP basic syntax</p>
<p>PHP is a script that is place inside a HTML document that&#8217;s why you need to put the basic codes of HTML such as  and .<br />
PHP is open with the (?)question mark followed by &#8220;PHP&#8221; and closed with a (?) question mark.</p>
<p>II. Displaying in PHP</p>
<p>In order to display a text in PHP you need to use the keyword ECHO or PRINT. all code line ends with a semicolon.</p>
<p>To be continued&#8230;</p>
<p><img src='http://phpprogramming101.com/wp-content/uploads/2008/06/firefoxss23hqcom.jpg' alt='firefoxss23hqcom.jpg' /></p>
<p>image source: www.23hq.com</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogramming101.com/uncategorized/php-basic-coding/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SERVER REVIEW: APACHE vs. IIS (cont&#8230;)</title>
		<link>http://phpprogramming101.com/php/server-review-apache-vs-iis-cont/</link>
		<comments>http://phpprogramming101.com/php/server-review-apache-vs-iis-cont/#comments</comments>
		<pubDate>Mon, 19 May 2008 04:25:25 +0000</pubDate>
		<dc:creator>binary</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[asp]]></category>

		<category><![CDATA[iis]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[perl]]></category>

		<category><![CDATA[windows 2000]]></category>

		<category><![CDATA[windows nt]]></category>

		<guid isPermaLink="false">http://phpprogramming101.com/php/server-review-apache-vs-iis-cont/</guid>
		<description><![CDATA[(cont&#8230;)
On the other hand, Microsoft&#8217;s Internet Information Server (IIS) is a group of internet servers which has additional fetures for Microsoft operating system such as Windows NT and windows 2000 operating system servers. IIS canâ€™t use Java, Perl and PHP on a .Net platform because Microsoft doesn&#8217;t support those technologies but Web developers can use [...]]]></description>
			<content:encoded><![CDATA[<p>(cont&#8230;)</p>
<p>On the other hand, Microsoft&#8217;s Internet Information Server (IIS) is a group of internet servers which has additional fetures for Microsoft operating system such as Windows NT and windows 2000 operating system servers. IIS canâ€™t use Java, Perl and PHP on a .Net platform because Microsoft doesn&#8217;t support those technologies but Web developers can use Microsoft&#8217;s Active Server Page (ASP)technology otherwise. IIS has server administrators which include console from which all services and users can be administered. According to www.microsoft.com â€œI IS 6.0 which is redesigned with a new fault-tolerant process architecture that greatly boosts the reliability of Web sites and applications. IIS 6.0 isolates Web sites and applications into self-contained units called application pools, which separate applications from the other applications that are hosted on the same server.â€ Now i give you free hand to choose on what server you want to use? IIS or APACHE?</p>
<p><img src='http://phpprogramming101.com/wp-content/uploads/2008/05/ssl-iis51.gif' alt='ssl-iis51.gif' /></p>
<p>Image Source: www.trustis.com</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogramming101.com/php/server-review-apache-vs-iis-cont/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SERVER REVIEW: APACHE vs. IIS</title>
		<link>http://phpprogramming101.com/php/server-review-apache-vs-iis/</link>
		<comments>http://phpprogramming101.com/php/server-review-apache-vs-iis/#comments</comments>
		<pubDate>Fri, 16 May 2008 04:21:14 +0000</pubDate>
		<dc:creator>binary</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[http server]]></category>

		<category><![CDATA[iis]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[mac]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://phpprogramming101.com/php/server-review-apache-vs-iis/</guid>
		<description><![CDATA[Apache is an open source http server named after the Native American. It is then first release in the year 1995. Now a day, Apache is considered as the most used http server in the world. It is compatible with almost all operating systems like Linux, Windows, Mac and etc. Almost anyone can adopt with [...]]]></description>
			<content:encoded><![CDATA[<p>Apache is an open source http server named after the Native American. It is then first release in the year 1995. Now a day, Apache is considered as the most used http server in the world. It is compatible with almost all operating systems like Linux, Windows, Mac and etc. Almost anyone can adopt with this http server because of its source code is freely available. The Apache 2.0 which comes with a new Windows optimization technology called the Apache Portable Runtime (APR) while previous Apache version were not optimized for Windows. Apache developers can use Java, Perl and PHP on a .Net platform.</p>
<p>to be continued&#8230;</p>
<p><img src='http://phpprogramming101.com/wp-content/uploads/2008/05/4229-apache-server.jpg' alt='4229-apache-server.jpg' /></p>
<p>Image Source: www.pdftown.com</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogramming101.com/php/server-review-apache-vs-iis/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OPENSOURCE DATABASE: MySQL</title>
		<link>http://phpprogramming101.com/php/opensource-database-mysql/</link>
		<comments>http://phpprogramming101.com/php/opensource-database-mysql/#comments</comments>
		<pubDate>Thu, 15 May 2008 05:58:21 +0000</pubDate>
		<dc:creator>binary</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[bugzilla]]></category>

		<category><![CDATA[community server]]></category>

		<category><![CDATA[database]]></category>

		<category><![CDATA[dbms]]></category>

		<category><![CDATA[drupal]]></category>

		<category><![CDATA[joomla]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[mac]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[perl]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[word press]]></category>

		<guid isPermaLink="false">http://phpprogramming101.com/php/opensource-database-mysql/</guid>
		<description><![CDATA[MySQL is a Database Management System (DBMS) that is released in May of 1995. Itâ€™s commonly use for web applications and acts as the database component of different Platforms such as Linux/BSD/Mac/W-A-M-P/Perl/Python and for open-source bug tracking tools like bugzilla. MySQL are essential components of content management systems such as Joomla, Word Press, Drupal and [...]]]></description>
			<content:encoded><![CDATA[<p>MySQL is a Database Management System (DBMS) that is released in May of 1995. Itâ€™s commonly use for web applications and acts as the database component of different Platforms such as Linux/BSD/Mac/W-A-M-P/Perl/Python and for open-source bug tracking tools like bugzilla. MySQL are essential components of content management systems such as Joomla, Word Press, Drupal and some Bit Torrent trackers that is written in PHP and uses a MySQL database. The latest MySQL product version is the MySQL 5.0 that is launched last August 2007. It has two different variants such as MySQL Community Server and MySQL Enterprise Server. And soon to release is the MySQL 5.1.</p>
<p><img src='http://phpprogramming101.com/wp-content/uploads/2008/05/logo-mysql.jpg' alt='logo-mysql.jpg' /></p>
<p>Image Source: www.openlife.cc</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogramming101.com/php/opensource-database-mysql/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP PROGRAMMING 101: GETTING TO KNOW WHAT IS PHP?</title>
		<link>http://phpprogramming101.com/php/php-programming-101-getting-to-know-what-is-php/</link>
		<comments>http://phpprogramming101.com/php/php-programming-101-getting-to-know-what-is-php/#comments</comments>
		<pubDate>Fri, 09 May 2008 18:05:39 +0000</pubDate>
		<dc:creator>binary</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[.net]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[C]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[javaserver]]></category>

		<category><![CDATA[serversidescripting]]></category>

		<category><![CDATA[visual basic]]></category>

		<guid isPermaLink="false">http://phpprogramming101.com/php/php-programming-101-getting-to-know-what-is-php/</guid>
		<description><![CDATA[What is PHP?
PHP is originally known as Personal Homepage but now itâ€™s already known as Hypertext Preprocessor. This general-purpose scripting language was created by Rasmus Lerdorf in 1995. And its main use is to produce Dynamic Web Pages.  
PHP is one of the widely-used scripting languages over the web servers because itâ€™s free of [...]]]></description>
			<content:encoded><![CDATA[<p>What is PHP?</p>
<p>PHP is originally known as Personal Homepage but now itâ€™s already known as Hypertext Preprocessor. This general-purpose scripting language was created by Rasmus Lerdorf in 1995. And its main use is to produce Dynamic Web Pages.  </p>
<p>PHP is one of the widely-used scripting languages over the web servers because itâ€™s free of charge. PHP can also be used for command-line scripting and client-side GUI application. And in terms security, PHP is the popular target of hacker especially those application that is poorly built.</p>
<p>PHP focuses on server-side scripting. And itâ€™s like other server-side scripting languages that provide dynamic content from a web server to a client such as Microsoft ASP.NET, Sun Microsystem JavaServer Pages and mod_perl.</p>
<p>According to wikipedia.com â€œPHP is the fourth to the most popular computer programming language, ranking behind JAVA, C, and Visual Basic. PHP was also recorded as the most popular Apache module. And as of April 2007, 20 million Internet domains were hosted on servers with PHP installed.â€</p>
<p><img src='http://phpprogramming101.com/wp-content/uploads/2008/05/44343-php_programmers_brain.jpg' alt='php' /></p>
<p>Image Source: www.filebuzz.com</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogramming101.com/php/php-programming-101-getting-to-know-what-is-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ALL IN ONE PHP SOLUTION: WAMP SERVER:</title>
		<link>http://phpprogramming101.com/php/all-in-one-php-solution-wamp-server/</link>
		<comments>http://phpprogramming101.com/php/all-in-one-php-solution-wamp-server/#comments</comments>
		<pubDate>Thu, 08 May 2008 17:27:18 +0000</pubDate>
		<dc:creator>binary</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[server]]></category>

		<category><![CDATA[tutorial]]></category>

		<category><![CDATA[wamp]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://phpprogramming101.com/php/all-in-one-php-solution-wamp-server/</guid>
		<description><![CDATA[WampServer is a WEB DEVELOPMENT SOLUTION that is easy to manage. Because after installing the package, you don&#8217;t need to touch any of its major settings because itâ€™s completely fix. And with its user friendly Graphical User Interface (GUI) you can immediately and easily understand it without seeking the help of the book or the [...]]]></description>
			<content:encoded><![CDATA[<p>WampServer is a WEB DEVELOPMENT SOLUTION that is easy to manage. Because after installing the package, you don&#8217;t need to touch any of its major settings because itâ€™s completely fix. And with its user friendly Graphical User Interface (GUI) you can immediately and easily understand it without seeking the help of the book or the tutorials around the net.</p>
<p>This web development package allows web developer to create web applications using APACHE(server), PHP(coding), and the MySQL(database). Plus it has PHPMyAdmin and SQLiteManager that make web developer managed their database easily. </p>
<p>This is the only program allows the user to reproduce their production server. That&#8217;s why there is the possibility that you can add as many apache, mysql or php releases you want.</p>
<p><img src='http://phpprogramming101.com/wp-content/uploads/2008/05/wamp_image027.jpg' alt='wamp_image027.jpg' /></p>
<p>To know more about this solution visit www.wampserver.com</p>
<p>Image source: www.goitexpert.com</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogramming101.com/php/all-in-one-php-solution-wamp-server/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
