<?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: Creating Your First PHP Application: Part 3</title> <atom:link href="http://buildinternet.com/2009/12/creating-your-first-php-application-part-3/feed/" rel="self" type="application/rss+xml" /><link>http://buildinternet.com/2009/12/creating-your-first-php-application-part-3/</link> <description>Web Design, Development, and Business</description> <lastBuildDate>Fri, 10 Sep 2010 01:08:48 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>By: yoenk</title><link>http://buildinternet.com/2009/12/creating-your-first-php-application-part-3/comment-page-1/#comment-14846</link> <dc:creator>yoenk</dc:creator> <pubDate>Sun, 05 Sep 2010 03:27:32 +0000</pubDate> <guid
isPermaLink="false">http://buildinternet.com/?p=7852#comment-14846</guid> <description>Thank you for the great tutorials.i want to display all user .so i create a method like this below,public function displayAllUser() {
........................
}but could you give example what should i fill in that method .... please ???</description> <content:encoded><![CDATA[<p>Thank you for the great tutorials.i want to display all user .so i create a method like this below,</p><p>public function displayAllUser() {<br
/> &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;<br
/> }</p><p>but could you give example what should i fill in that method &#8230;. please ???</p> ]]></content:encoded> </item> <item><title>By: Brian Muse</title><link>http://buildinternet.com/2009/12/creating-your-first-php-application-part-3/comment-page-1/#comment-11968</link> <dc:creator>Brian Muse</dc:creator> <pubDate>Fri, 05 Mar 2010 12:43:27 +0000</pubDate> <guid
isPermaLink="false">http://buildinternet.com/?p=7852#comment-11968</guid> <description>@Tao and others
Register globals is most likely your problem, as Tao pointed out. This ini directive was turned on by default for versions of PHP below 4.2. Since 4.2.0 it has been turned off by default and using it is highly discouraged.In fact, it is being completely removed in PHP 6.0.Learn more here: http://www.php.net/manual/en/ini.core.php#ini.register-globals</description> <content:encoded><![CDATA[<p>@Tao and others<br
/> Register globals is most likely your problem, as Tao pointed out. This ini directive was turned on by default for versions of PHP below 4.2. Since 4.2.0 it has been turned off by default and using it is highly discouraged.</p><p>In fact, it is being completely removed in PHP 6.0.</p><p>Learn more here: <a
href="http://www.php.net/manual/en/ini.core.php#ini.register-globals" rel="nofollow">http://www.php.net/manual/en/ini.core.php#ini.register-globals</a></p> ]]></content:encoded> </item> <item><title>By: Tao</title><link>http://buildinternet.com/2009/12/creating-your-first-php-application-part-3/comment-page-1/#comment-11967</link> <dc:creator>Tao</dc:creator> <pubDate>Fri, 05 Mar 2010 12:35:41 +0000</pubDate> <guid
isPermaLink="false">http://buildinternet.com/?p=7852#comment-11967</guid> <description>I had the same problem and solved it by putting an &quot;php.ini&quot; file on the app folder (together with the front end files) containing only &quot;register_globals = off&quot;.(thanks Brian Muse for your assistance!)</description> <content:encoded><![CDATA[<p>I had the same problem and solved it by putting an &#8220;php.ini&#8221; file on the app folder (together with the front end files) containing only &#8220;register_globals = off&#8221;.</p><p>(thanks Brian Muse for your assistance!)</p> ]]></content:encoded> </item> <item><title>By: Zack</title><link>http://buildinternet.com/2009/12/creating-your-first-php-application-part-3/comment-page-1/#comment-11796</link> <dc:creator>Zack</dc:creator> <pubDate>Mon, 22 Feb 2010 05:11:49 +0000</pubDate> <guid
isPermaLink="false">http://buildinternet.com/?p=7852#comment-11796</guid> <description>I found that, after login, page redirects to index.php, after the unserialize was run, all the SESSION settings($_SESSION[&#039;user&#039;], $_SESSION[&#039;logged_in&#039;], $_SESSION[&#039;login_time&#039;]) will change to numbers, so that if you run change email page, or logout, the unserialize() function gets error.But I am not sure what causes this, is it about the unserialize() function?</description> <content:encoded><![CDATA[<p>I found that, after login, page redirects to index.php, after the unserialize was run, all the SESSION settings($_SESSION['user'], $_SESSION['logged_in'], $_SESSION['login_time']) will change to numbers, so that if you run change email page, or logout, the unserialize() function gets error.</p><p>But I am not sure what causes this, is it about the unserialize() function?</p> ]]></content:encoded> </item> <item><title>By: Zack</title><link>http://buildinternet.com/2009/12/creating-your-first-php-application-part-3/comment-page-1/#comment-11692</link> <dc:creator>Zack</dc:creator> <pubDate>Thu, 18 Feb 2010 08:40:34 +0000</pubDate> <guid
isPermaLink="false">http://buildinternet.com/?p=7852#comment-11692</guid> <description>I&#039;ve got the same error as thorkon. And two more error later:Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\cms\classes\DB.class.php on line 42Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\cms\classes\DB.class.php on line 25</description> <content:encoded><![CDATA[<p>I&#8217;ve got the same error as thorkon. And two more error later:</p><p>Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\cms\classes\DB.class.php on line 42</p><p>Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\cms\classes\DB.class.php on line 25</p> ]]></content:encoded> </item> <item><title>By: thorkon</title><link>http://buildinternet.com/2009/12/creating-your-first-php-application-part-3/comment-page-1/#comment-11363</link> <dc:creator>thorkon</dc:creator> <pubDate>Tue, 26 Jan 2010 16:41:03 +0000</pubDate> <guid
isPermaLink="false">http://buildinternet.com/?p=7852#comment-11363</guid> <description>I get an error  &quot;unserialize() expects parameter 1 to be string, object given in includes/global.inc.php on line 20&quot;.How can I get rid of it / what&#039;s wrong?</description> <content:encoded><![CDATA[<p>I get an error  &#8220;unserialize() expects parameter 1 to be string, object given in includes/global.inc.php on line 20&#8243;.</p><p>How can I get rid of it / what&#8217;s wrong?</p> ]]></content:encoded> </item> <item><title>By: nightmare</title><link>http://buildinternet.com/2009/12/creating-your-first-php-application-part-3/comment-page-1/#comment-10565</link> <dc:creator>nightmare</dc:creator> <pubDate>Thu, 31 Dec 2009 08:17:24 +0000</pubDate> <guid
isPermaLink="false">http://buildinternet.com/?p=7852#comment-10565</guid> <description>The installation process I encountered this error:
http://hitupload.net/files/errorphp.jpg
Please help !!</description> <content:encoded><![CDATA[<p>The installation process I encountered this error:<br
/> <a
href="http://hitupload.net/files/errorphp.jpg" rel="nofollow">http://hitupload.net/files/errorphp.jpg</a><br
/> Please help !!</p> ]]></content:encoded> </item> <item><title>By: Brandon</title><link>http://buildinternet.com/2009/12/creating-your-first-php-application-part-3/comment-page-1/#comment-10550</link> <dc:creator>Brandon</dc:creator> <pubDate>Wed, 30 Dec 2009 20:14:27 +0000</pubDate> <guid
isPermaLink="false">http://buildinternet.com/?p=7852#comment-10550</guid> <description>Correction to my question:Why would the error handling not be inside the UserTools class?Thanks again!!</description> <content:encoded><![CDATA[<p>Correction to my question:</p><p>Why would the error handling not be inside the UserTools class?</p><p>Thanks again!!</p> ]]></content:encoded> </item> <item><title>By: Brandon</title><link>http://buildinternet.com/2009/12/creating-your-first-php-application-part-3/comment-page-1/#comment-10549</link> <dc:creator>Brandon</dc:creator> <pubDate>Wed, 30 Dec 2009 20:12:25 +0000</pubDate> <guid
isPermaLink="false">http://buildinternet.com/?p=7852#comment-10549</guid> <description>Thank you for the tutorials.   I am new to OOP and php classes.Question:  Why would the error handling to be inside the UserTools class?Thanks for your help.</description> <content:encoded><![CDATA[<p>Thank you for the tutorials.   I am new to OOP and php classes.</p><p>Question:  Why would the error handling to be inside the UserTools class?</p><p>Thanks for your help.</p> ]]></content:encoded> </item> <item><title>By: Shrinivas</title><link>http://buildinternet.com/2009/12/creating-your-first-php-application-part-3/comment-page-1/#comment-10536</link> <dc:creator>Shrinivas</dc:creator> <pubDate>Wed, 30 Dec 2009 12:05:37 +0000</pubDate> <guid
isPermaLink="false">http://buildinternet.com/?p=7852#comment-10536</guid> <description>Well written and explained article, I&#039;m pointing guys looking to begin with php+mysql to this set of tutorials. Thanks!</description> <content:encoded><![CDATA[<p>Well written and explained article, I&#8217;m pointing guys looking to begin with php+mysql to this set of tutorials. Thanks!</p> ]]></content:encoded> </item> </channel> </rss><!--
This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc (user agent is rejected)
Database Caching 4/20 queries in 0.026 seconds using disk

Served from: cazzu.com @ 2010-09-10 10:53:49 -->