<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How To: Code Your First Web App (Part 3)</title>
	<atom:link href="http://paulstamatiou.com/how-to-code-your-first-web-app-part-3/feed" rel="self" type="application/rss+xml" />
	<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3</link>
	<description>Tech News, Reviews and Guides</description>
	<lastBuildDate>Wed, 17 Mar 2010 03:43:27 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: How To: Code Your First Web App (Part 1) &#124; 藏宝图</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-178772</link>
		<dc:creator>How To: Code Your First Web App (Part 1) &#124; 藏宝图</dc:creator>
		<pubDate>Tue, 14 Apr 2009 13:32:09 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-178772</guid>
		<description>[...] the next segment hopefully tomorrow. You might find it easier to just grab my RSS feed. Part 2 and Part 3 have been [...]</description>
		<content:encoded><![CDATA[<p>[...] the next segment hopefully tomorrow. You might find it easier to just grab my RSS feed. Part 2 and Part 3 have been [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jenu</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-172624</link>
		<dc:creator>Jenu</dc:creator>
		<pubDate>Mon, 22 Dec 2008 19:51:37 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-172624</guid>
		<description>great tutorial. For the manage file line 95 reads:

&lt;?
	echo &quot;&quot;;

Should be:

&lt;?php
	echo &quot;&quot;;</description>
		<content:encoded><![CDATA[<p>great tutorial. For the manage file line 95 reads:</p>
<p>&lt;?<br />
	echo &#8220;&#8221;;</p>
<p>Should be:</p>
<p>&lt;?php<br />
	echo &#8220;&#8221;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Fletcher</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-155442</link>
		<dc:creator>Tim Fletcher</dc:creator>
		<pubDate>Fri, 15 Feb 2008 16:12:26 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-155442</guid>
		<description>A fantastic tutorial, right at the level I&#039;m looking for! In the spirit of free tuition there are a few tips I&#039;d like to share with other new students of PHP like myself. Fingers crossed all this code formats ok! 

1. As stated by rattiepa, util.php has missing quotes on $mysql_db = webapp; line. It should read $mysql_db = &quot;webapp&quot;;

2. The forms.php file tests the $_POST array for redirections from other pages. Depending on from where you&#039;ve come, some of the array parameters may not exist which gives undefined index warnings. You can get rid of these warings by checking that the parameters exist before attempting to copy them from $_POST into new variables. Do this using a simple if statement for each variable so that:

$user = make_safe($_POST[&#039;user&#039;]);

becomes:

if(isset($_POST[&#039;user&#039;])){
	$user = make_safe($_POST[&#039;user&#039;]);
}


3. Similarly, to get rid of the undefined index error in manage.php change:

$delete = make_safe($_GET[&#039;delete&#039;]);
if($delete !== NULL){
	$delete_contact = &quot;delete from contacts where id=&#039;$delete&#039;&quot;;
	if (!mysql_query($delete_contact)){
	  	die(&#039;Error: &#039; . mysql_error());
	}
}

to:

if(isset($_GET[&#039;delete&#039;])){
	$delete = make_safe($_GET[&#039;delete&#039;]);

	if($delete !== NULL){
		$delete_contact = &quot;delete from contacts where id=&#039;$delete&#039;&quot;;
		if (!mysql_query($delete_contact)){
	 	 	die(&#039;Error: &#039; . mysql_error());
		}
	}
}


4. To get the cool title stuff working for the index page add &quot;/webapp/index.php&quot; =&gt; &quot;- Home&quot; to the $pages associative array in the header.php file for the home page. I think Paul just forgot this line.</description>
		<content:encoded><![CDATA[<p>A fantastic tutorial, right at the level I&#39;m looking for! In the spirit of free tuition there are a few tips I&#39;d like to share with other new students of PHP like myself. Fingers crossed all this code formats ok! </p>
<p>1. As stated by rattiepa, util.php has missing quotes on $mysql_db = webapp; line. It should read $mysql_db = &quot;webapp&quot;;</p>
<p>2. The forms.php file tests the $_POST array for redirections from other pages. Depending on from where you&#39;ve come, some of the array parameters may not exist which gives undefined index warnings. You can get rid of these warings by checking that the parameters exist before attempting to copy them from $_POST into new variables. Do this using a simple if statement for each variable so that:</p>
<p>$user = make_safe($_POST[&#39;user&#39;]);</p>
<p>becomes:</p>
<p>if(isset($_POST[&#39;user&#39;])){<br />
	$user = make_safe($_POST[&#39;user&#39;]);<br />
}</p>
<p>3. Similarly, to get rid of the undefined index error in manage.php change:</p>
<p>$delete = make_safe($_GET[&#39;delete&#39;]);<br />
if($delete !== NULL){<br />
	$delete_contact = &quot;delete from contacts where id=&#39;$delete&#39;&quot;;<br />
	if (!mysql_query($delete_contact)){<br />
	  	die(&#39;Error: &#39; . mysql_error());<br />
	}<br />
}</p>
<p>to:</p>
<p>if(isset($_GET[&#39;delete&#39;])){<br />
	$delete = make_safe($_GET[&#39;delete&#39;]);</p>
<p>	if($delete !== NULL){<br />
		$delete_contact = &quot;delete from contacts where id=&#39;$delete&#39;&quot;;<br />
		if (!mysql_query($delete_contact)){<br />
	 	 	die(&#39;Error: &#39; . mysql_error());<br />
		}<br />
	}<br />
}</p>
<p>4. To get the cool title stuff working for the index page add &quot;/webapp/index.php&quot; =&gt; &quot;- Home&quot; to the $pages associative array in the header.php file for the home page. I think Paul just forgot this line.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ji</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-153949</link>
		<dc:creator>ji</dc:creator>
		<pubDate>Thu, 24 Jan 2008 15:17:57 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-153949</guid>
		<description>Thank you,

I appreciate the time you spent on this tutorial, very helpful for someone just starting. (y)</description>
		<content:encoded><![CDATA[<p>Thank you,</p>
<p>I appreciate the time you spent on this tutorial, very helpful for someone just starting. (y)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-152552</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Thu, 03 Jan 2008 10:30:55 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-152552</guid>
		<description>&lt;strong&gt;Eric...&lt;/strong&gt;

I like the blog , please update it...</description>
		<content:encoded><![CDATA[<p><strong>Eric&#8230;</strong></p>
<p>I like the blog , please update it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PHP tutorials for beginners &#171; Junal on the run</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-151938</link>
		<dc:creator>PHP tutorials for beginners &#171; Junal on the run</dc:creator>
		<pubDate>Mon, 24 Dec 2007 12:03:43 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-151938</guid>
		<description>[...] Third part: it says about how to handle multiple items. So you will get a concept of foreach, for and while loop concept. [...]</description>
		<content:encoded><![CDATA[<p>[...] Third part: it says about how to handle multiple items. So you will get a concept of foreach, for and while loop concept. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Will Perkins</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-148904</link>
		<dc:creator>Will Perkins</dc:creator>
		<pubDate>Sat, 03 Nov 2007 16:28:23 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-148904</guid>
		<description>Thanks man, this has helped me so much!

I am really trying to learn this, but reading books and stuff of that sort is just boring. Hands on is more my style and this is just what I was looking for, excellent work.</description>
		<content:encoded><![CDATA[<p>Thanks man, this has helped me so much!</p>
<p>I am really trying to learn this, but reading books and stuff of that sort is just boring. Hands on is more my style and this is just what I was looking for, excellent work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rattiepa</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-143576</link>
		<dc:creator>rattiepa</dc:creator>
		<pubDate>Thu, 20 Sep 2007 10:43:21 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-143576</guid>
		<description>Thanks again Paul, I&#039;ve learned alot using your material. Now I&#039;ll start building my own apps, but I&#039;d like to add few last remarks. 

Typos and other issues:
In util.php
Line 8, quotes missing, should propably be:
$mysql_db = &quot;webapp&quot;;

In functions.php 
Line 16, variable $msql_host is incorrect, &quot;y&quot; is missing, should be $mysql_host. If MySql and web service in both on the same computer, this doesn&#039;t matter, because default mysql host is localhost.

I first installed both MySql and web service on a LAMP-computer, but then I tried using IIS on W2003 as web service and MySql on LAMP. Well, I partly got it working. Register works OK if you correct the typos, but most of the pages/actions does not. If you are looking for similar application like this, I think you can correct the errors with reasonable effort. 

One of the things with IIS &amp; Windows, PHP and MySql is that two latter must be compatible. MySql 5.x requires PHP 5.x. 
Other thing is installing PHP to work with IIS and the PHP to work with MySql. I couldn&#039;t get the installer to work, made a manual installation and got the PHP&#039;s MySql Extensions in working order, but that required some perseverance.</description>
		<content:encoded><![CDATA[<p>Thanks again Paul, I&#8217;ve learned alot using your material. Now I&#8217;ll start building my own apps, but I&#8217;d like to add few last remarks. </p>
<p>Typos and other issues:<br />
In util.php<br />
Line 8, quotes missing, should propably be:<br />
$mysql_db = &#8220;webapp&#8221;;</p>
<p>In functions.php<br />
Line 16, variable $msql_host is incorrect, &#8220;y&#8221; is missing, should be $mysql_host. If MySql and web service in both on the same computer, this doesn&#8217;t matter, because default mysql host is localhost.</p>
<p>I first installed both MySql and web service on a LAMP-computer, but then I tried using IIS on W2003 as web service and MySql on LAMP. Well, I partly got it working. Register works OK if you correct the typos, but most of the pages/actions does not. If you are looking for similar application like this, I think you can correct the errors with reasonable effort. </p>
<p>One of the things with IIS &amp; Windows, PHP and MySql is that two latter must be compatible. MySql 5.x requires PHP 5.x.<br />
Other thing is installing PHP to work with IIS and the PHP to work with MySql. I couldn&#8217;t get the installer to work, made a manual installation and got the PHP&#8217;s MySql Extensions in working order, but that required some perseverance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Akhil</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-142120</link>
		<dc:creator>Akhil</dc:creator>
		<pubDate>Thu, 06 Sep 2007 20:40:20 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-142120</guid>
		<description>It&#039;s Like Eureka Eureka for me...Paul you a Gem. I searched whole lot of web but could n&#039;t find anything you did... I wonder why Google keeps your site at different place than at number one.... Even a blind can uderstand what the heck is all about in PHP. I will try to propogate this wonderful series to my freinds.. I think they must be benefitted as i am....

Paul one more request ... Please come up with all your knowledge in this blog..lol..

Cheers
Bro...</description>
		<content:encoded><![CDATA[<p>It&#8217;s Like Eureka Eureka for me&#8230;Paul you a Gem. I searched whole lot of web but could n&#8217;t find anything you did&#8230; I wonder why Google keeps your site at different place than at number one&#8230;. Even a blind can uderstand what the heck is all about in PHP. I will try to propogate this wonderful series to my freinds.. I think they must be benefitted as i am&#8230;.</p>
<p>Paul one more request &#8230; Please come up with all your knowledge in this blog..lol..</p>
<p>Cheers<br />
Bro&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rattiepa</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-142040</link>
		<dc:creator>rattiepa</dc:creator>
		<pubDate>Thu, 06 Sep 2007 14:30:37 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-142040</guid>
		<description>Hi again
These things I found useful too.

MySql command line interface:
Logging on:
mysql -u username -p

Deleting the database:
drop database webapp;

Selecting the database when logged on:
use webapp

I installed my Ubuntu LAMP on my Windows workstation by installing first VmWare Player:
http://www.vmware.com/products/player/

To create Ubuntu (or any Linux) virtual machine, create your template here:
http://www.easyvmx.com/</description>
		<content:encoded><![CDATA[<p>Hi again<br />
These things I found useful too.</p>
<p>MySql command line interface:<br />
Logging on:<br />
mysql -u username -p</p>
<p>Deleting the database:<br />
drop database webapp;</p>
<p>Selecting the database when logged on:<br />
use webapp</p>
<p>I installed my Ubuntu LAMP on my Windows workstation by installing first VmWare Player:<br />
<a href="http://www.vmware.com/products/player/" rel="nofollow">http://www.vmware.com/products/player/</a></p>
<p>To create Ubuntu (or any Linux) virtual machine, create your template here:<br />
<a href="http://www.easyvmx.com/" rel="nofollow">http://www.easyvmx.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rattiepa</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-142036</link>
		<dc:creator>rattiepa</dc:creator>
		<pubDate>Thu, 06 Sep 2007 14:15:05 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-142036</guid>
		<description>Hi Paul,
Many thanks for this post. 

I&#039;ve studying building Web App using this post and I&#039;m getting there, have learned a lot. 

Heres my suggestions to get this even smoother My LAMP (Ubuntu Dapper drake 6.06) needed these lines to RUN_THIS_FIRST.sql file, before the other commands:

create database webapp;
use webapp;

After these changes phpMyAdmin does it all: Creates database, `contacts` and `users` tables and all th fields. 

If some one wants to know how I&#039;ve built my Web App on Ubuntu LAMP, check these:
Basic installation:
http://www.debianadmin.com/ubuntu-lamp-server-installation-with-screenshots.html

Basic installation plus phpMyAdmin etc.:
http://ry.akgeeks.net/?p=9</description>
		<content:encoded><![CDATA[<p>Hi Paul,<br />
Many thanks for this post. </p>
<p>I&#8217;ve studying building Web App using this post and I&#8217;m getting there, have learned a lot. </p>
<p>Heres my suggestions to get this even smoother My LAMP (Ubuntu Dapper drake 6.06) needed these lines to RUN_THIS_FIRST.sql file, before the other commands:</p>
<p>create database webapp;<br />
use webapp;</p>
<p>After these changes phpMyAdmin does it all: Creates database, `contacts` and `users` tables and all th fields. </p>
<p>If some one wants to know how I&#8217;ve built my Web App on Ubuntu LAMP, check these:<br />
Basic installation:<br />
<a href="http://www.debianadmin.com/ubuntu-lamp-server-installation-with-screenshots.html" rel="nofollow">http://www.debianadmin.com/ubuntu-lamp-server-installation-with-screenshots.html</a></p>
<p>Basic installation plus phpMyAdmin etc.:<br />
<a href="http://ry.akgeeks.net/?p=9" rel="nofollow">http://ry.akgeeks.net/?p=9</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mario benavides jurado</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-140246</link>
		<dc:creator>mario benavides jurado</dc:creator>
		<pubDate>Sun, 02 Sep 2007 00:28:06 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-140246</guid>
		<description>Great tutorial, congratulations....... excellent for teaching and practice :)

Greetings from Colombia (South america).

att,

Mario Benavides Jurado
Web Developer</description>
		<content:encoded><![CDATA[<p>Great tutorial, congratulations&#8230;&#8230;. excellent for teaching and practice :)</p>
<p>Greetings from Colombia (South america).</p>
<p>att,</p>
<p>Mario Benavides Jurado<br />
Web Developer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hokage</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-122838</link>
		<dc:creator>hokage</dc:creator>
		<pubDate>Sat, 14 Apr 2007 14:36:58 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-122838</guid>
		<description>great tutorial...hmm is there translation this tutorial with openlaszlo... heee ;)</description>
		<content:encoded><![CDATA[<p>great tutorial&#8230;hmm is there translation this tutorial with openlaszlo&#8230; heee ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Stamatiou</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-96939</link>
		<dc:creator>Paul Stamatiou</dc:creator>
		<pubDate>Sun, 28 Jan 2007 07:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-96939</guid>
		<description>@Marcel - try deleting &quot;&lt; ?php echo $title; ?&gt;&quot; from header.php</description>
		<content:encoded><![CDATA[<p>@Marcel &#8211; try deleting &#8220;< ?php echo $title; ?>&#8221; from header.php</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elias</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-96478</link>
		<dc:creator>Elias</dc:creator>
		<pubDate>Sat, 27 Jan 2007 09:10:29 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-96478</guid>
		<description>Thanks champ - just what I needed - I am big on ideas, business experience and education but I&#039;m not a developer. You gave me a good insight so I can build my prototype web application, to show my potential investors.

Kali Xponia megale</description>
		<content:encoded><![CDATA[<p>Thanks champ &#8211; just what I needed &#8211; I am big on ideas, business experience and education but I&#8217;m not a developer. You gave me a good insight so I can build my prototype web application, to show my potential investors.</p>
<p>Kali Xponia megale</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Stamatiou</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-96169</link>
		<dc:creator>Paul Stamatiou</dc:creator>
		<pubDate>Fri, 26 Jan 2007 21:56:06 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-96169</guid>
		<description>Hey Marcel, that header thing is happening on in a few select cases with various server setups. I&#039;ll try to look into it this weekend but it might just be one of those things as there are many different server setups out there.

Thanks for pointing it out,
Paul</description>
		<content:encoded><![CDATA[<p>Hey Marcel, that header thing is happening on in a few select cases with various server setups. I&#8217;ll try to look into it this weekend but it might just be one of those things as there are many different server setups out there.</p>
<p>Thanks for pointing it out,<br />
Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcel de Ruiter</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-96135</link>
		<dc:creator>Marcel de Ruiter</dc:creator>
		<pubDate>Fri, 26 Jan 2007 21:00:05 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-96135</guid>
		<description>Hi Paul,

Thanks for this very nice tutorial, but I did run into a warning:

Warning: Cannot modify header information - headers already sent by (output started at C:\Program Files\xampp\htdocs\webapp\header.php:23) in C:\Program Files\xampp\htdocs\webapp\manage.php on line 9

it occured when, after login, I went to manage contacts.

Any idea?


Many thanks and best regards,
Marcel
The Netherlands</description>
		<content:encoded><![CDATA[<p>Hi Paul,</p>
<p>Thanks for this very nice tutorial, but I did run into a warning:</p>
<p>Warning: Cannot modify header information &#8211; headers already sent by (output started at C:\Program Files\xampp\htdocs\webapp\header.php:23) in C:\Program Files\xampp\htdocs\webapp\manage.php on line 9</p>
<p>it occured when, after login, I went to manage contacts.</p>
<p>Any idea?</p>
<p>Many thanks and best regards,<br />
Marcel<br />
The Netherlands</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balakumar Muthu</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-84402</link>
		<dc:creator>Balakumar Muthu</dc:creator>
		<pubDate>Mon, 08 Jan 2007 13:47:49 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-84402</guid>
		<description>Amazing Simple article Paul ... expect more such series.</description>
		<content:encoded><![CDATA[<p>Amazing Simple article Paul &#8230; expect more such series.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lefteris</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-80078</link>
		<dc:creator>Lefteris</dc:creator>
		<pubDate>Tue, 02 Jan 2007 10:42:58 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-80078</guid>
		<description>I found your tutorial very useful. 
I&#039;ll put in good use your coding technics.

Kali Hronia!</description>
		<content:encoded><![CDATA[<p>I found your tutorial very useful.<br />
I&#8217;ll put in good use your coding technics.</p>
<p>Kali Hronia!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Montoya</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-79653</link>
		<dc:creator>Montoya</dc:creator>
		<pubDate>Tue, 02 Jan 2007 00:25:51 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-79653</guid>
		<description>Paul, great job on this! A stellar tutorial and a perfect example app.</description>
		<content:encoded><![CDATA[<p>Paul, great job on this! A stellar tutorial and a perfect example app.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: agyampark &#183; links for 2007-01-01</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-78675</link>
		<dc:creator>agyampark &#183; links for 2007-01-01</dc:creator>
		<pubDate>Mon, 01 Jan 2007 01:28:28 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-78675</guid>
		<description>[...] How To: Code Your First Web App (Part 3) - PaulStamatiou.com (tags: webdev tutorials)     M&#233;g nincs megjegyz&#233;s, hajr&#225;.     N&#233;v Email (K&#246;zt&#252;nk marad) Honlap   Ide b&#246;kd a megjegyz&#233;sed [...]</description>
		<content:encoded><![CDATA[<p>[...] How To: Code Your First Web App (Part 3) &#8211; PaulStamatiou.com (tags: webdev tutorials)     M&eacute;g nincs megjegyz&eacute;s, hajr&aacute;.     N&eacute;v Email (K&ouml;zt&uuml;nk marad) Honlap   Ide b&ouml;kd a megjegyz&eacute;sed [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Campbell</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-78620</link>
		<dc:creator>Steven Campbell</dc:creator>
		<pubDate>Mon, 01 Jan 2007 00:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-78620</guid>
		<description>Bookmarked! I haven&#039;t read part 1 or part 2, but when I decide to create The Greatest Web App Ever Known to Man, I&#039;ll go back and read them. Great series.</description>
		<content:encoded><![CDATA[<p>Bookmarked! I haven&#8217;t read part 1 or part 2, but when I decide to create The Greatest Web App Ever Known to Man, I&#8217;ll go back and read them. Great series.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Soroush</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-78528</link>
		<dc:creator>Soroush</dc:creator>
		<pubDate>Sun, 31 Dec 2006 20:52:54 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-78528</guid>
		<description>Paul, I&#039;m sure you enjoyed working on creating your web app, even though it took many hours! I know that it is the case for me and I always learn new things along the way! (Usually, finding a better and more efficient way of writing code)
Have a happy &#039;07 ahead of you!</description>
		<content:encoded><![CDATA[<p>Paul, I&#8217;m sure you enjoyed working on creating your web app, even though it took many hours! I know that it is the case for me and I always learn new things along the way! (Usually, finding a better and more efficient way of writing code)<br />
Have a happy &#8216;07 ahead of you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Working With Web Apps - MuhammadK.com</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-78073</link>
		<dc:creator>Working With Web Apps - MuhammadK.com</dc:creator>
		<pubDate>Sun, 31 Dec 2006 10:11:48 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-78073</guid>
		<description>[...] Paul Stamatiou completed the series with Part 2 and Part 3.      No Comments   Leave a Commenttrackback addressThere was an error with your comment, please try again. name (required)email (will not be published)(required)url [...]</description>
		<content:encoded><![CDATA[<p>[...] Paul Stamatiou completed the series with Part 2 and Part 3.      No Comments   Leave a Commenttrackback addressThere was an error with your comment, please try again. name (required)email (will not be published)(required)url [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mahesh</title>
		<link>http://paulstamatiou.com/how-to-code-your-first-web-app-part-3#comment-78039</link>
		<dc:creator>Mahesh</dc:creator>
		<pubDate>Sun, 31 Dec 2006 09:32:20 +0000</pubDate>
		<guid isPermaLink="false">http://paulstamatiou.com/2006/12/29/how-to-code-your-first-web-app-part-3/#comment-78039</guid>
		<description>Hi
Paul that&#039;s great tutorial you came up with for PHP and Mysql.Well i guess if you can come up with tutorials like &quot; Porting oswd.org templetes to wordpress themes&quot; or other like &quot;creating wordpress themes for beginners&quot; in 2007 that will definitely bang the blogosphere.

I think many readers of your blog want the above said titles  from you,anyway wish you happy new year in advance.</description>
		<content:encoded><![CDATA[<p>Hi<br />
Paul that&#8217;s great tutorial you came up with for PHP and Mysql.Well i guess if you can come up with tutorials like &#8221; Porting oswd.org templetes to wordpress themes&#8221; or other like &#8220;creating wordpress themes for beginners&#8221; in 2007 that will definitely bang the blogosphere.</p>
<p>I think many readers of your blog want the above said titles  from you,anyway wish you happy new year in advance.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
