<?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: Create a Portfolio Client Area Using PHP and MySQL: Part 3</title>
	<atom:link href="http://webitect.net/development/phpmysql/create-a-portfolio-client-area-using-php-and-mysql-part-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://webitect.net/development/phpmysql/create-a-portfolio-client-area-using-php-and-mysql-part-3/</link>
	<description>A Resource Blog for Webmasters</description>
	<lastBuildDate>Sun, 20 May 2012 09:44:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andy Rixon</title>
		<link>http://webitect.net/development/phpmysql/create-a-portfolio-client-area-using-php-and-mysql-part-3/comment-page-1/#comment-1327</link>
		<dc:creator>Andy Rixon</dc:creator>
		<pubDate>Fri, 31 Jul 2009 01:10:53 +0000</pubDate>
		<guid isPermaLink="false">http://webitect.net/?p=3972#comment-1327</guid>
		<description>Great tutorial, well commented... just wondering, when will the next part be available :D</description>
		<content:encoded><![CDATA[<p>Great tutorial, well commented&#8230; just wondering, when will the next part be available <img src='http://webitect.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mencha</title>
		<link>http://webitect.net/development/phpmysql/create-a-portfolio-client-area-using-php-and-mysql-part-3/comment-page-1/#comment-1313</link>
		<dc:creator>Mencha</dc:creator>
		<pubDate>Tue, 28 Jul 2009 22:10:53 +0000</pubDate>
		<guid isPermaLink="false">http://webitect.net/?p=3972#comment-1313</guid>
		<description>Great great tutorial!!! Thanks very much, I&#039;ve been looking for something like this for so long!! Thanks you very much!!!</description>
		<content:encoded><![CDATA[<p>Great great tutorial!!! Thanks very much, I&#8217;ve been looking for something like this for so long!! Thanks you very much!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cody Robertson</title>
		<link>http://webitect.net/development/phpmysql/create-a-portfolio-client-area-using-php-and-mysql-part-3/comment-page-1/#comment-1312</link>
		<dc:creator>Cody Robertson</dc:creator>
		<pubDate>Tue, 28 Jul 2009 17:29:49 +0000</pubDate>
		<guid isPermaLink="false">http://webitect.net/?p=3972#comment-1312</guid>
		<description>Oh wow, just noticed pre tags don&#039;t work in comments :/</description>
		<content:encoded><![CDATA[<p>Oh wow, just noticed pre tags don&#8217;t work in comments :/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://webitect.net/development/phpmysql/create-a-portfolio-client-area-using-php-and-mysql-part-3/comment-page-1/#comment-1311</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Tue, 28 Jul 2009 17:11:04 +0000</pubDate>
		<guid isPermaLink="false">http://webitect.net/?p=3972#comment-1311</guid>
		<description>Thanks so much Kayla for the great tutorial(s)!</description>
		<content:encoded><![CDATA[<p>Thanks so much Kayla for the great tutorial(s)!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin McCormick</title>
		<link>http://webitect.net/development/phpmysql/create-a-portfolio-client-area-using-php-and-mysql-part-3/comment-page-1/#comment-1310</link>
		<dc:creator>Colin McCormick</dc:creator>
		<pubDate>Tue, 28 Jul 2009 16:04:20 +0000</pubDate>
		<guid isPermaLink="false">http://webitect.net/?p=3972#comment-1310</guid>
		<description>Nice tutorial. I agree with Cody that you should use the object-oriented mysqli method for connecting to the database. Otherwise great tut.</description>
		<content:encoded><![CDATA[<p>Nice tutorial. I agree with Cody that you should use the object-oriented mysqli method for connecting to the database. Otherwise great tut.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cody Robertson</title>
		<link>http://webitect.net/development/phpmysql/create-a-portfolio-client-area-using-php-and-mysql-part-3/comment-page-1/#comment-1309</link>
		<dc:creator>Cody Robertson</dc:creator>
		<pubDate>Tue, 28 Jul 2009 15:00:44 +0000</pubDate>
		<guid isPermaLink="false">http://webitect.net/?p=3972#comment-1309</guid>
		<description>Nice one Kayla, I do want to recommend one thing though, There is a better and more secure way to connect to a database now.

Your Code
[pre]
$conn = mysql_connect(&quot;localhost&quot;,&quot;root&quot;,&quot;&quot;);
$db = mysql_select_db(&quot;ClientArea&quot;);
[/pre]

If I was going to go on about it I would do this
[pre]
$mysqli = new mysqli(&#039;localhost&#039;, &#039;user&#039;, &#039;pass, &#039;dbname&#039;);
[/pre]

Then after you call it, you have to do other thing a bit different like you can do.

[pre]
$mysqli-&gt;query();
//or
mysqli_query();
[/pre]

It has to be mysqli not mysql.

Also, have you seen my emails? I can never seem to get a hold of you</description>
		<content:encoded><![CDATA[<p>Nice one Kayla, I do want to recommend one thing though, There is a better and more secure way to connect to a database now.</p>
<p>Your Code<br />
[pre]<br />
$conn = mysql_connect(&#8220;localhost&#8221;,&#8221;root&#8221;,&#8221;");<br />
$db = mysql_select_db(&#8220;ClientArea&#8221;);<br />
[/pre]</p>
<p>If I was going to go on about it I would do this<br />
[pre]<br />
$mysqli = new mysqli(&#8216;localhost&#8217;, &#8216;user&#8217;, &#8216;pass, &#8216;dbname&#8217;);<br />
[/pre]</p>
<p>Then after you call it, you have to do other thing a bit different like you can do.</p>
<p>[pre]<br />
$mysqli-&gt;query();<br />
//or<br />
mysqli_query();<br />
[/pre]</p>
<p>It has to be mysqli not mysql.</p>
<p>Also, have you seen my emails? I can never seem to get a hold of you</p>
]]></content:encoded>
	</item>
</channel>
</rss>

