<?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: PHP with MySQL Beyond the Basics</title>
	<atom:link href="http://www.nullislove.com/2009/03/26/php-with-mysql-beyond-the-basics/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nullislove.com/2009/03/26/php-with-mysql-beyond-the-basics/</link>
	<description>Code for Coders</description>
	<pubDate>Sat, 31 Jul 2010 03:57:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Vinny</title>
		<link>http://www.nullislove.com/2009/03/26/php-with-mysql-beyond-the-basics/comment-page-1/#comment-2392</link>
		<dc:creator>Vinny</dc:creator>
		<pubDate>Fri, 26 Mar 2010 17:16:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/?p=300#comment-2392</guid>
		<description>Just in case anyone was wondering, changing ::self to ::static and using get_called_class() the way Kevin outlined in the last movie of chapter 6, works like a charm in PHP 5.3!</description>
		<content:encoded><![CDATA[<p>Just in case anyone was wondering, changing ::self to ::static and using get_called_class() the way Kevin outlined in the last movie of chapter 6, works like a charm in PHP 5.3!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Skoglund</title>
		<link>http://www.nullislove.com/2009/03/26/php-with-mysql-beyond-the-basics/comment-page-1/#comment-2358</link>
		<dc:creator>Kevin Skoglund</dc:creator>
		<pubDate>Sun, 24 Jan 2010 13:46:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/?p=300#comment-2358</guid>
		<description>@Tony: 1) Redirect: Before a redirect to a login page, you would store their desired page in a session variable.  After login, you would retrieve it, clear the session variable and redirect them to the page they wanted. 2) Update: It is easiest to delete the whole photograph and re-upload it.  But if you want to update, the file upload is the same, the only difference is that you need to pull up the exisiting record and update that, rather than create a new record.  Everything else is the same.</description>
		<content:encoded><![CDATA[<p>@Tony: 1) Redirect: Before a redirect to a login page, you would store their desired page in a session variable.  After login, you would retrieve it, clear the session variable and redirect them to the page they wanted. 2) Update: It is easiest to delete the whole photograph and re-upload it.  But if you want to update, the file upload is the same, the only difference is that you need to pull up the exisiting record and update that, rather than create a new record.  Everything else is the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johnathan Williamson</title>
		<link>http://www.nullislove.com/2009/03/26/php-with-mysql-beyond-the-basics/comment-page-1/#comment-2354</link>
		<dc:creator>Johnathan Williamson</dc:creator>
		<pubDate>Fri, 22 Jan 2010 23:22:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/?p=300#comment-2354</guid>
		<description>Just wanted to drop a very quick 'thank you' for this video tutorial set, and your earlier PHP one.

Both are excellent and I'm thoroughly enjoying the second set :)

Regards,
Johnathan</description>
		<content:encoded><![CDATA[<p>Just wanted to drop a very quick &#8216;thank you&#8217; for this video tutorial set, and your earlier PHP one.</p>
<p>Both are excellent and I&#8217;m thoroughly enjoying the second set <img src='http://www.nullislove.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Regards,<br />
Johnathan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Willis</title>
		<link>http://www.nullislove.com/2009/03/26/php-with-mysql-beyond-the-basics/comment-page-1/#comment-2353</link>
		<dc:creator>Steve Willis</dc:creator>
		<pubDate>Thu, 21 Jan 2010 23:28:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/?p=300#comment-2353</guid>
		<description>Started your PHP Essentials course on lynda.com and discovered an issue you might want to include in the configuration section of the course.

Under Leopard and on systems that have had Snow Leopard installed on top of a previous Leopard install, there is a known issue regarding a 403 Forbidden error that occurs when you enter http://localhost/~username into Safari.

The technical article is at http://support.apple.com/kb/TA25038?viewlocale=en_US

Thanks!

Steve</description>
		<content:encoded><![CDATA[<p>Started your PHP Essentials course on lynda.com and discovered an issue you might want to include in the configuration section of the course.</p>
<p>Under Leopard and on systems that have had Snow Leopard installed on top of a previous Leopard install, there is a known issue regarding a 403 Forbidden error that occurs when you enter <a href="http://localhost/~username" rel="nofollow">http://localhost/~username</a> into Safari.</p>
<p>The technical article is at <a href="http://support.apple.com/kb/TA25038?viewlocale=en_US" rel="nofollow">http://support.apple.com/kb/TA25038?viewlocale=en_US</a></p>
<p>Thanks!</p>
<p>Steve</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://www.nullislove.com/2009/03/26/php-with-mysql-beyond-the-basics/comment-page-1/#comment-2352</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Thu, 21 Jan 2010 06:16:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/?p=300#comment-2352</guid>
		<description>Hi Kevin,

I really enjoyed PHP Beyond the Basics.  You made it easy to follow and understand and I agree with everyone that you should continue to add to this library as it is awesome.  

I also have a couple of questions...  

When a user is trying to access an admin page and gets redirected to login, is there an easy way to keep track of the page they were trying to access and redirect them to that page once they are authenticated (instead of index.php)?

I would love to see the code to update the photographs in the photo_gallery.  I tried using a form similar to the upload form and getting the values from the class and setting them in the fields on the form, but how do you handle the file upload?  Sometimes the user might want to change the photograph and other times not?

Anyway thanks again for the great courses and I look forward to hearing from you.</description>
		<content:encoded><![CDATA[<p>Hi Kevin,</p>
<p>I really enjoyed PHP Beyond the Basics.  You made it easy to follow and understand and I agree with everyone that you should continue to add to this library as it is awesome.  </p>
<p>I also have a couple of questions&#8230;  </p>
<p>When a user is trying to access an admin page and gets redirected to login, is there an easy way to keep track of the page they were trying to access and redirect them to that page once they are authenticated (instead of index.php)?</p>
<p>I would love to see the code to update the photographs in the photo_gallery.  I tried using a form similar to the upload form and getting the values from the class and setting them in the fields on the form, but how do you handle the file upload?  Sometimes the user might want to change the photograph and other times not?</p>
<p>Anyway thanks again for the great courses and I look forward to hearing from you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Veronica</title>
		<link>http://www.nullislove.com/2009/03/26/php-with-mysql-beyond-the-basics/comment-page-1/#comment-2298</link>
		<dc:creator>Veronica</dc:creator>
		<pubDate>Wed, 09 Sep 2009 01:58:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/?p=300#comment-2298</guid>
		<description>Hello Kevin
Thank you for your great series at Lynda.com
I have been using your videos to learn PHP with MySQL and I am really surprised with the quality and clarity of the lessons. I have spent hundreds of dollars in similar courses and I haven't learned nearly as much.
Special thanks for helping me to solve some technical issues, I really appreciate it.
Looking forward to learning more with your tutorials.</description>
		<content:encoded><![CDATA[<p>Hello Kevin<br />
Thank you for your great series at Lynda.com<br />
I have been using your videos to learn PHP with MySQL and I am really surprised with the quality and clarity of the lessons. I have spent hundreds of dollars in similar courses and I haven&#8217;t learned nearly as much.<br />
Special thanks for helping me to solve some technical issues, I really appreciate it.<br />
Looking forward to learning more with your tutorials.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shahzad</title>
		<link>http://www.nullislove.com/2009/03/26/php-with-mysql-beyond-the-basics/comment-page-1/#comment-2286</link>
		<dc:creator>shahzad</dc:creator>
		<pubDate>Sun, 23 Aug 2009 20:45:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/?p=300#comment-2286</guid>
		<description>Hello Kevin,

I just want to say you thanks for the PHP tutorials, especially "Beyond the Basics".

And Please continue it to the "Advance PHP Tutorials".

I am waiting for your new PHP Advance tutorials, Please do it again for all of us.

Thanks

and

Take care.</description>
		<content:encoded><![CDATA[<p>Hello Kevin,</p>
<p>I just want to say you thanks for the PHP tutorials, especially &#8220;Beyond the Basics&#8221;.</p>
<p>And Please continue it to the &#8220;Advance PHP Tutorials&#8221;.</p>
<p>I am waiting for your new PHP Advance tutorials, Please do it again for all of us.</p>
<p>Thanks</p>
<p>and</p>
<p>Take care.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hussam</title>
		<link>http://www.nullislove.com/2009/03/26/php-with-mysql-beyond-the-basics/comment-page-1/#comment-2282</link>
		<dc:creator>Hussam</dc:creator>
		<pubDate>Thu, 20 Aug 2009 19:10:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/?p=300#comment-2282</guid>
		<description>Hi Kevin!
I hope you are fine as well as your family,
I needed to put these lines on your site telling you that you are the best teacher I have ever seen in my entire life.

Even though I have been learning PHP for long time before I saw your tutorials so installing wamp and all begginers tutorils were too long to watch (for me) BUT the fact is that the jump I made in PHP after watching the whole tutorials is just unbelievable.

I have not yet seen all of your PHP beyond the basics tutorials because I got a little bit overwhelmed with theory on classes BUT I am 100% sure that when I complete it I will make another incredible jump.

I encourage you to do more tutorials on PHP espicially working with frameworks and pick the most suitable one for us so we can improve our skills to get our scripts done in a shorter time and less overwhelming.

Do more for us kevin so we don't waste our time, effort, and money for not helpful tutorials on the web, please don't forget us kevin.

I wish you the best in your life kevin as well as your family!
you are such a great teacher and nice person.

take care.</description>
		<content:encoded><![CDATA[<p>Hi Kevin!<br />
I hope you are fine as well as your family,<br />
I needed to put these lines on your site telling you that you are the best teacher I have ever seen in my entire life.</p>
<p>Even though I have been learning PHP for long time before I saw your tutorials so installing wamp and all begginers tutorils were too long to watch (for me) BUT the fact is that the jump I made in PHP after watching the whole tutorials is just unbelievable.</p>
<p>I have not yet seen all of your PHP beyond the basics tutorials because I got a little bit overwhelmed with theory on classes BUT I am 100% sure that when I complete it I will make another incredible jump.</p>
<p>I encourage you to do more tutorials on PHP espicially working with frameworks and pick the most suitable one for us so we can improve our skills to get our scripts done in a shorter time and less overwhelming.</p>
<p>Do more for us kevin so we don&#8217;t waste our time, effort, and money for not helpful tutorials on the web, please don&#8217;t forget us kevin.</p>
<p>I wish you the best in your life kevin as well as your family!<br />
you are such a great teacher and nice person.</p>
<p>take care.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Skoglund</title>
		<link>http://www.nullislove.com/2009/03/26/php-with-mysql-beyond-the-basics/comment-page-1/#comment-2278</link>
		<dc:creator>Kevin Skoglund</dc:creator>
		<pubDate>Fri, 14 Aug 2009 17:19:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/?p=300#comment-2278</guid>
		<description>@Talon: I believe that's just the way WAMP works.  If you deploy using WAMP, you'll have the same issue.  If you deploy by installing PHP and MySQL on your own or by using a pre-installed version that your web host provides, you shouldn't experience the same problem.</description>
		<content:encoded><![CDATA[<p>@Talon: I believe that&#8217;s just the way WAMP works.  If you deploy using WAMP, you&#8217;ll have the same issue.  If you deploy by installing PHP and MySQL on your own or by using a pre-installed version that your web host provides, you shouldn&#8217;t experience the same problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Talon</title>
		<link>http://www.nullislove.com/2009/03/26/php-with-mysql-beyond-the-basics/comment-page-1/#comment-2276</link>
		<dc:creator>Talon</dc:creator>
		<pubDate>Thu, 13 Aug 2009 15:41:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.nullislove.com/?p=300#comment-2276</guid>
		<description>Kevin,

Wanted to say thank you for your comprehensive and detailed teaching. Your PHP/MySQL series at Lynda proved to be the most helpful resource I have come across for learning how to build dynamic websites.

There was something in the course that I could never figure out that maybe you could give me a pointer on: You taught on creating an 'initialize' php file and defined a few directory constants. You used a directory separator and I believe you were working on a mac. I'm on windows, which I thought would not matter since I was running WAMP. However, whenever I tried making an absolute path like you demonstrated, I got windows DS, and therefore the application broke. It worked as long as I stayed within WAMP's directory tree. So, if I was building a site locally, how would I test creating absolute paths that I could upload to a webserver?

I hope that makes sense. That was the only part were I got a little lost. Thank you again!
-Talon</description>
		<content:encoded><![CDATA[<p>Kevin,</p>
<p>Wanted to say thank you for your comprehensive and detailed teaching. Your PHP/MySQL series at Lynda proved to be the most helpful resource I have come across for learning how to build dynamic websites.</p>
<p>There was something in the course that I could never figure out that maybe you could give me a pointer on: You taught on creating an &#8216;initialize&#8217; php file and defined a few directory constants. You used a directory separator and I believe you were working on a mac. I&#8217;m on windows, which I thought would not matter since I was running WAMP. However, whenever I tried making an absolute path like you demonstrated, I got windows DS, and therefore the application broke. It worked as long as I stayed within WAMP&#8217;s directory tree. So, if I was building a site locally, how would I test creating absolute paths that I could upload to a webserver?</p>
<p>I hope that makes sense. That was the only part were I got a little lost. Thank you again!<br />
-Talon</p>
]]></content:encoded>
	</item>
</channel>
</rss>
