<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jimmie's Blog</title>
	<atom:link href="http://jimmie32.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jimmie32.wordpress.com</link>
	<description>The history of Web Development :)</description>
	<lastBuildDate>Mon, 28 Apr 2008 19:30:25 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='jimmie32.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/3e4d99eabef59d130a4512d48a388069?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Jimmie's Blog</title>
		<link>http://jimmie32.wordpress.com</link>
	</image>
			<item>
		<title>PHP Basics.</title>
		<link>http://jimmie32.wordpress.com/2008/04/28/php-basics/</link>
		<comments>http://jimmie32.wordpress.com/2008/04/28/php-basics/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 19:29:53 +0000</pubDate>
		<dc:creator>jimmie32</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Developing]]></category>

		<guid isPermaLink="false">http://jimmie32.wordpress.com/?p=4</guid>
		<description><![CDATA[I thought that I could write my 2nd post while I&#8217;m here and while I&#8217;m installing Apple&#8217;s iTunes (ONLY NOW? OMG). So, what is exactly PHP?
PHP -&#62; PHP: Hypertext Processor.
Official Website is http://php.net
And huh&#8230;How do we start a PHP Code? Like this?

Code: HTML
 


&#60;scripttype="php"&#62;

Me: *dies* Of course not. PHP scripts are written to .php files. They start like:

Code: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jimmie32.wordpress.com&blog=3600168&post=4&subd=jimmie32&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I thought that I could write my 2nd post while I&#8217;m here and while I&#8217;m installing Apple&#8217;s iTunes (ONLY NOW? OMG). So, what is exactly PHP?</p>
<p>PHP -&gt; PHP: Hypertext Processor.<br />
Official Website is <a rel="nofollow" href="http://php.net/" target="_blank">http://php.net</a></p>
<p>And huh&#8230;How do we start a PHP Code? Like this?</p>
<blockquote><dl>
<dt>Code: HTML</dt>
<dd> </dd>
</dl>
<p><code><br />
&lt;<span>script</span><span>type</span>="<span>php</span>"&gt;<br />
</code></p></blockquote>
<p><strong>Me:</strong> *dies* Of course not. PHP scripts are written to .php files. They start like:</p>
<blockquote><dl>
<dt>Code: HTML</dt>
<dd> </dd>
</dl>
<p><code><br />
&lt;?php<br />
</code></p></blockquote>
<p>and end like this:</p>
<blockquote><dl>
<dt>Code: HTML</dt>
<dd> </dd>
</dl>
<p><code><br />
?&gt;<br />
</code></p></blockquote>
<p><strong>Note: &lt;?php can also be replaced with &lt;? (IF YOU HAVE short_open_tag [Or whatever] on at your PHP server) or &lt;% (If you have asp_tags on at your php server)<br />
</strong></p>
<p>Now, first script. How do we output something? Or better, show something?</p>
<blockquote><dl>
<dt>Code: HTML</dt>
<dd> </dd>
</dl>
<p><code><br />
&lt;?php<br />
// we start the naughty php tag.</code></p>
<p><code> </code><code>// and we output.<br />
echo 'Show whatever here but don\'t use single quotes unless you escape them. View next part for more info';<br />
// and we finish.<br />
?&gt;<br />
</code></p></blockquote>
<p>Simple huh? Comments:<br />
To make PHP comments, you can use</p>
<blockquote><dl>
<dt>Code:</dt>
<dd> </dd>
</dl>
<p><code>//</code></p></blockquote>
<p>for a single line comment, or</p>
<blockquote><dl>
<dt>Code:</dt>
<dd> </dd>
</dl>
<p><code>/* comment */</code></p></blockquote>
<p>. Or just use</p>
<blockquote><dl>
<dt>Code:</dt>
<dd> </dd>
</dl>
<p><code>#comment</code></p></blockquote>
<p>for another kind of simple, one-line comments.</p>
<p>ECHO: This outputs. Remember, if you make ECHO using SINGLE QUOTES (&#8216;) you CANNOT USE IT IN YOUR TEXT OR THE SCRIPT WILL BREAK. But you can escape it with a backslash behind them like:</p>
<blockquote><dl>
<dt>Code: HTML</dt>
<dd> </dd>
</dl>
<p><code><br />
\' \" \'<br />
</code></p></blockquote>
<p>For don&#8217;t, you can use:</p>
<blockquote><dl>
<dt>Code: HTML</dt>
<dd> </dd>
</dl>
<p><code><br />
don\'t<br />
</code></p></blockquote>
<p>So, I think that I will write only until here, and expect more updates to this silly tutorial soon. <img src="http://209.85.62.24/static/emo/1.png" alt=")" /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jimmie32.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jimmie32.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jimmie32.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jimmie32.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jimmie32.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jimmie32.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jimmie32.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jimmie32.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jimmie32.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jimmie32.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jimmie32.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jimmie32.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jimmie32.wordpress.com&blog=3600168&post=4&subd=jimmie32&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jimmie32.wordpress.com/2008/04/28/php-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d11ce755d1e95331c1f4efa9f300a13?s=96&#38;d=identicon" medium="image">
			<media:title type="html">jimmie32</media:title>
		</media:content>

		<media:content url="http://209.85.62.24/static/emo/1.png" medium="image">
			<media:title type="html">)</media:title>
		</media:content>
	</item>
		<item>
		<title>Welcome to my blog.</title>
		<link>http://jimmie32.wordpress.com/2008/04/28/welcome-to-my-blog/</link>
		<comments>http://jimmie32.wordpress.com/2008/04/28/welcome-to-my-blog/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 19:22:12 +0000</pubDate>
		<dc:creator>jimmie32</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Developing]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://jimmie32.wordpress.com/?p=3</guid>
		<description><![CDATA[Hello everyone, and welcome to my blog.
I&#8217;m Jimmie, currently 11 years old, studying at EB2+3 Paula Vicente Secondary School, at Lisbon, Portugal.
I&#8217;m currently the best student at the whole 5th grade. I&#8217;m good with Maths  
I&#8217;m a Web Developer &#38; Programmer and I&#8217;m good with (x)HTML, CSS (Cascading Style Sheets), AJAX, XML (Extended Markup [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jimmie32.wordpress.com&blog=3600168&post=3&subd=jimmie32&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hello everyone, and welcome to my blog.</p>
<p>I&#8217;m Jimmie, currently 11 years old, studying at EB2+3 Paula Vicente Secondary School, at Lisbon, Portugal.</p>
<p>I&#8217;m currently the best student at the whole 5th grade. I&#8217;m good with Maths <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m a Web Developer &amp; Programmer and I&#8217;m good with (x)HTML, CSS (Cascading Style Sheets), AJAX, XML (Extended Markup Languange), jQuery (If you ever want to know why I list it here, post a comment and I will answer), and something funny called PHP. The &#8220;PHP:HyperText Processor&#8221;. MySQL is a good thing for me too <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>On Programming, I know Visual Basic, Java and somethin&#8217; called C++. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>If you want ever to know more about me, feel free to comment, or expect more silly posts <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jimmie32.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jimmie32.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jimmie32.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jimmie32.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jimmie32.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jimmie32.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jimmie32.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jimmie32.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jimmie32.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jimmie32.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jimmie32.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jimmie32.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jimmie32.wordpress.com&blog=3600168&post=3&subd=jimmie32&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jimmie32.wordpress.com/2008/04/28/welcome-to-my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d11ce755d1e95331c1f4efa9f300a13?s=96&#38;d=identicon" medium="image">
			<media:title type="html">jimmie32</media:title>
		</media:content>
	</item>
	</channel>
</rss>