<?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>GrassField &#187; PHP</title>
	<atom:link href="http://blog.grassfield.org/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.grassfield.org</link>
	<description>Classroom notes on Java SE, EE &#38; ME</description>
	<lastBuildDate>Fri, 02 Jul 2010 06:29:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>First page in PHP</title>
		<link>http://blog.grassfield.org/2008/12/15/first-page-in-php/</link>
		<comments>http://blog.grassfield.org/2008/12/15/first-page-in-php/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 18:57:38 +0000</pubDate>
		<dc:creator>Pandian R</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.grassfield.org/2008/12/15/first-page-in-php/</guid>
		<description><![CDATA[
I am thinking about this for long time. I am not able to write a single page in php. Today I did it. Just to share it with you  
&#60;?php
//title
$title = 'PHP Test';
?&#62;
&#60;html&#62;
&#60;head&#62;
&#60;title&#62;&#60;?php echo "$title";?&#62;&#60;/title&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;?php
//create an array
$myArray = array('this', 'is', 'a', 'PHP', 'Test');
for ($i=0; $i&#60;5; $i++)
{
echo "$myArray[$i]";
echo '&#60;br&#62;';
}
?&#62;
&#60;/body&#62;
&#60;/html&#62;

Prints the following in the browser
this
is
a
PHP
Test
Nice! need [...]]]></description>
		<wfw:commentRss>http://blog.grassfield.org/2008/12/15/first-page-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
