<?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>PHP/MySQL Tutorials, Training, Courses</title>
	<atom:link href="http://php.webdevevolved.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://php.webdevevolved.com</link>
	<description>Advanced courses for PHP beginners</description>
	<lastBuildDate>Mon, 26 Apr 2010 07:00:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Visitor IP in PHP</title>
		<link>http://php.webdevevolved.com/2010/04/26/php-scripts/visitor-ip-in-php/</link>
		<comments>http://php.webdevevolved.com/2010/04/26/php-scripts/visitor-ip-in-php/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 06:24:43 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[PHP scripts]]></category>
		<category><![CDATA[client ip]]></category>
		<category><![CDATA[ip address]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[visitor ip]]></category>

		<guid isPermaLink="false">http://php.webdevevolved.com/?p=146</guid>
		<description><![CDATA[  Need to use the visitor IP address in PHP?
The $_SERVER superglobal array gives you access to sever and client related information, such as the clients IP address. The index you need is REMOTE_ADDR (remote address).
12345&#60;?php

echo $_SERVER&#91;'REMOTE_ADDR'&#93;; &#160; // outputs visitor IP address

?&#62;
IP address in php can be used for a variety of purposes, [...]]]></description>
		<wfw:commentRss>http://php.webdevevolved.com/2010/04/26/php-scripts/visitor-ip-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to PHP statements</title>
		<link>http://php.webdevevolved.com/2009/12/07/introduction-to-php/introduction-to-php-statements/</link>
		<comments>http://php.webdevevolved.com/2009/12/07/introduction-to-php/introduction-to-php-statements/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 10:38:31 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[Introduction to PHP]]></category>
		<category><![CDATA[instructions]]></category>
		<category><![CDATA[statements]]></category>

		<guid isPermaLink="false">http://php.webdevevolved.com/?p=104</guid>
		<description><![CDATA[  It is now time to learn how you make things work in php, with basic statements in PHP.

There are several types of statements in PHP programing. We will negotiate the basics in this article: declaration statements, expression statements, selection statements and iteration statements.


Declaration statements


Declaration statements introduce in your script new variables, or constants. Variables, [...]]]></description>
		<wfw:commentRss>http://php.webdevevolved.com/2009/12/07/introduction-to-php/introduction-to-php-statements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arrays in PHP</title>
		<link>http://php.webdevevolved.com/2009/11/19/introduction-to-php/php-arrays/</link>
		<comments>http://php.webdevevolved.com/2009/11/19/introduction-to-php/php-arrays/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 16:01:07 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[Introduction to PHP]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[arrays]]></category>
		<category><![CDATA[variables]]></category>

		<guid isPermaLink="false">http://php.webdevevolved.com/?p=78</guid>
		<description><![CDATA[  You already know how variables work  in PHP. You will now learn how to use arrays, in PHP.

As you code more and more, you will reach a point where you will need a great amount of variables and this is exactly what arrays provide. You can imagine them like a collection of [...]]]></description>
		<wfw:commentRss>http://php.webdevevolved.com/2009/11/19/introduction-to-php/php-arrays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to PHP variables</title>
		<link>http://php.webdevevolved.com/2009/11/11/introduction-to-php/introduction-to-php-variables/</link>
		<comments>http://php.webdevevolved.com/2009/11/11/introduction-to-php/introduction-to-php-variables/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 15:00:09 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[Introduction to PHP]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[variables]]></category>

		<guid isPermaLink="false">http://php.webdevevolved.com/?p=37</guid>
		<description><![CDATA[  You will learn in this tutorial how to use variables in PHP and manipulate their data.

First thing to know is that PHP variables are always marked by $, followed by the variable name (example: $variable).
&#160;


Variable names


The name can include a pretty wide range of characters, but it is recommended to use alphanumericals and [...]]]></description>
		<wfw:commentRss>http://php.webdevevolved.com/2009/11/11/introduction-to-php/introduction-to-php-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code comments</title>
		<link>http://php.webdevevolved.com/2009/11/11/introduction-to-php/code-comments/</link>
		<comments>http://php.webdevevolved.com/2009/11/11/introduction-to-php/code-comments/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 13:43:03 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[Introduction to PHP]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://php.webdevevolved.com/?p=42</guid>
		<description><![CDATA[  Short introduction to code comments in PHP.


Though many seem to ignore them, comments are very important in coding. Maybe not yet, but later on, you will see that you will need some kind of &#8220;bookmarks&#8221; throughout your code, and comments are exactly what you need.
Basically, code comments are notes, shorter or longer texts [...]]]></description>
		<wfw:commentRss>http://php.webdevevolved.com/2009/11/11/introduction-to-php/code-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First PHP script</title>
		<link>http://php.webdevevolved.com/2009/11/05/introduction-to-php/first-php-script/</link>
		<comments>http://php.webdevevolved.com/2009/11/05/introduction-to-php/first-php-script/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 18:26:34 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[Introduction to PHP]]></category>
		<category><![CDATA[echo]]></category>
		<category><![CDATA[first script]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://php.webdevevolved.com/?p=18</guid>
		<description><![CDATA[  Get ready for it, &#8217;cause this php tutorial will show you how to display a message with PHP.

To get started, in the www folder, which we will call from now on root create a folder and name it lesson1 and then create inside a new file, called firstscript.php. Then paste the following code [...]]]></description>
		<wfw:commentRss>http://php.webdevevolved.com/2009/11/05/introduction-to-php/first-php-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting started with EasyPHP</title>
		<link>http://php.webdevevolved.com/2009/11/05/coding-environment/getting-started-with-easyphp/</link>
		<comments>http://php.webdevevolved.com/2009/11/05/coding-environment/getting-started-with-easyphp/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 17:57:50 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[Coding Environment]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[easyphp]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://php.webdevevolved.com/?p=9</guid>
		<description><![CDATA[  To start learning PHP, you first need to set up a web server to work on. This tutorial will show you how to setup an Apache server with EasyPHP. This is a small and easy to use application that runs a web and MySQL server, with the PHP module installed.



Download

You can find the latest [...]]]></description>
		<wfw:commentRss>http://php.webdevevolved.com/2009/11/05/coding-environment/getting-started-with-easyphp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
