<?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>Alexandru Pandele</title>
	<atom:link href="http://alexandru.pandele.eu/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexandru.pandele.eu</link>
	<description>Hobby: Web Development &#38; Travel</description>
	<lastBuildDate>Fri, 30 Mar 2012 13:26:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>What&#8217;s new in PHP 5.4.x ?</title>
		<link>http://alexandru.pandele.eu/whats-new-in-php-5-4-x/</link>
		<comments>http://alexandru.pandele.eu/whats-new-in-php-5-4-x/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 01:18:35 +0000</pubDate>
		<dc:creator>alecs</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://alexandru.pandele.eu/?p=378</guid>
		<description><![CDATA[Hey folks! Did you hear the news? PHP 5.4.0 has just been released and it brings a few important updates that we will discuss about today. So let&#8217;s talk about the great features that have been implemented in this version. I guess every PHP programmer wrote at least one uploading script and you know that [...]]]></description>
		<wfw:commentRss>http://alexandru.pandele.eu/whats-new-in-php-5-4-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy way to upload with PHP and HTML</title>
		<link>http://alexandru.pandele.eu/file-upload-with-php-and-html/</link>
		<comments>http://alexandru.pandele.eu/file-upload-with-php-and-html/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 15:33:40 +0000</pubDate>
		<dc:creator>alecs</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://alexandru.pandele.eu/?p=307</guid>
		<description><![CDATA[In this tutorial I will show you how to upload a file on your server using PHP script and HTML form. The basics HTML form In order to be able to upload a file, make sure your form has: - enctype=&#8221;multipart/form-data&#8221; - method=&#8221;post&#8221; &#60;form enctype=&#34;multipart/form-data&#34; action=&#34;upload.php&#34; method=&#34;post&#34;&#62; Please choose a file: &#60;input type=&#34;file&#34; name=&#34;uploadedFile&#34; /&#62; [...]]]></description>
		<wfw:commentRss>http://alexandru.pandele.eu/file-upload-with-php-and-html/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>CSS for Beginners – Lesson 1: The basics</title>
		<link>http://alexandru.pandele.eu/css-for-beginners-lesson-1-the-bascis/</link>
		<comments>http://alexandru.pandele.eu/css-for-beginners-lesson-1-the-bascis/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 09:19:26 +0000</pubDate>
		<dc:creator>alecs</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Beginners guide to CSS]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://alexandru.pandele.eu/?p=259</guid>
		<description><![CDATA[Hi folks! If you haven&#8217;t read the introduction to HTML I advice you to do so here. So we have this code &#60;html&#62; &#60;head&#62; &#60;title&#62;My first HTML tutorial&#60;/title&#62; &#60;meta name="description" content="Here is the best place to learn HTML" /&#62; &#60;meta name="keywords" content="html,tutorial,beginners" /&#62; &#60;meta name="robots" content="INDEX,FOLLOW" /&#62; &#60;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&#62; &#60;/head&#62; &#60;body&#62; &#60;div [...]]]></description>
		<wfw:commentRss>http://alexandru.pandele.eu/css-for-beginners-lesson-1-the-bascis/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>(X)HTML for Beginners – Lesson 4: Links</title>
		<link>http://alexandru.pandele.eu/xhtml-for-beginners-lesson-4-links/</link>
		<comments>http://alexandru.pandele.eu/xhtml-for-beginners-lesson-4-links/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 22:11:34 +0000</pubDate>
		<dc:creator>alecs</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Beginners guide to (x)HTML]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://alexandru.pandele.eu/?p=131</guid>
		<description><![CDATA[Hello everyone. Here we are, today we&#8217;ll discuss about the most important element websites have: Links. We see them and click on them everytime we visit a website. What whould have been the internet without links? First, let&#8217;s see thet basic structure of a link: &#60;a href="value" title="value"&#62;Text to click on&#60;/a&#62; So we see that [...]]]></description>
		<wfw:commentRss>http://alexandru.pandele.eu/xhtml-for-beginners-lesson-4-links/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>(X)HTML for Beginners – Lesson 3: Body and Page Divisions</title>
		<link>http://alexandru.pandele.eu/xhtml-for-beginners-lesson-3-body-and-page-divisions/</link>
		<comments>http://alexandru.pandele.eu/xhtml-for-beginners-lesson-3-body-and-page-divisions/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 21:50:27 +0000</pubDate>
		<dc:creator>alecs</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Beginners guide to (x)HTML]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://alexandru.pandele.eu/?p=129</guid>
		<description><![CDATA[Hello everyone. In the last post, I talked about the &#60;head&#62; part of an html file. Now I should say more about the &#60;body&#62; part and the most used (X)HTML tags. The &#60;body&#62; contains the tags that you will properly see in the page. Like: &#60;input type="button" value="My button" /&#62; If you put this code [...]]]></description>
		<wfw:commentRss>http://alexandru.pandele.eu/xhtml-for-beginners-lesson-3-body-and-page-divisions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>(X)HTML for Beginners &#8211; Lesson 2: Tags and Meta tags</title>
		<link>http://alexandru.pandele.eu/xhtml-for-beginners-lesson-2-tags-and-meta-tags/</link>
		<comments>http://alexandru.pandele.eu/xhtml-for-beginners-lesson-2-tags-and-meta-tags/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 18:40:54 +0000</pubDate>
		<dc:creator>alecs</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Beginners guide to (x)HTML]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://alexandru.pandele.eu/?p=121</guid>
		<description><![CDATA[Hello everyone. First I&#8217;d like to talk about tags&#8217; structure. There are 2 kinds of tags: 1. tags that can have inner content: &#60;tag attribute="value" attribute="value"&#62;inner content goes here&#60;/tag&#62; We have opening tag, attributes, content and closing tag Inner content can be other tags, text or both. We already learned such tags in the former [...]]]></description>
		<wfw:commentRss>http://alexandru.pandele.eu/xhtml-for-beginners-lesson-2-tags-and-meta-tags/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>(X)HTML for Beginners &#8211; Lesson 1: The basics</title>
		<link>http://alexandru.pandele.eu/xhtml-for-beginners-lesson-1-the-basics/</link>
		<comments>http://alexandru.pandele.eu/xhtml-for-beginners-lesson-1-the-basics/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 05:01:25 +0000</pubDate>
		<dc:creator>alecs</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Beginners guide to (x)HTML]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://alexandru.pandele.eu/?p=79</guid>
		<description><![CDATA[- What will I learn? In this first lesson we will learn what is HTML and the basic structure of an (X)HTML page. - What do I need? 1) For the start, you will need a text editor. We will use it to write and edit the code. For this tutorial we will use Notepadd++ [...]]]></description>
		<wfw:commentRss>http://alexandru.pandele.eu/xhtml-for-beginners-lesson-1-the-basics/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Problems using UTF-8 on your website?</title>
		<link>http://alexandru.pandele.eu/utf-8-and-websites/</link>
		<comments>http://alexandru.pandele.eu/utf-8-and-websites/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 06:44:15 +0000</pubDate>
		<dc:creator>alecs</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://alexandru.pandele.eu/?p=16</guid>
		<description><![CDATA[Is your website in other language than english? Does your website contain characters that are not in the english alphabet? Then you really need your website to accept UTF-8 encoding. Of course, there are more standards (ISO 8859-1, ISO 8859-2 etc), but UTF-8 gets all the characters you need. UTF-8 and HTML &#8211; In order [...]]]></description>
		<wfw:commentRss>http://alexandru.pandele.eu/utf-8-and-websites/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

