<?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 for Tinsology</title> <atom:link href="http://tinsology.net/comments/feed/" rel="self" type="application/rss+xml" /><link>http://tinsology.net</link> <description>Searching for the Right Questions</description> <lastBuildDate>Sun, 05 Feb 2012 10:13:23 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Comment on Creating a Secure Login System the Right Way by Chris</title><link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-9473</link> <dc:creator>Chris</dc:creator> <pubDate>Sun, 05 Feb 2012 10:13:23 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=663#comment-9473</guid> <description>A great starting point.  Thanks a bunch!</description> <content:encoded><![CDATA[<p>A great starting point.  Thanks a bunch!</p> ]]></content:encoded> </item> <item><title>Comment on Creating a Secure Login System the Right Way by Ollie</title><link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-9472</link> <dc:creator>Ollie</dc:creator> <pubDate>Sun, 05 Feb 2012 05:17:37 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=663#comment-9472</guid> <description>This evening I&#039;ve been researching secure login and registration practices and this one is exactly what I&#039;ve been looking for -- great well written article. Thanks</description> <content:encoded><![CDATA[<p>This evening I&#8217;ve been researching secure login and registration practices and this one is exactly what I&#8217;ve been looking for &#8212; great well written article. Thanks</p> ]]></content:encoded> </item> <item><title>Comment on Do We Need Longer Passwords? by April</title><link>http://tinsology.net/2010/08/do-we-need-longer-passwords/comment-page-1/#comment-9433</link> <dc:creator>April</dc:creator> <pubDate>Sun, 29 Jan 2012 15:29:32 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=1185#comment-9433</guid> <description>Thank you very much... I have been programming in PHP/MySQL for about 6 years and while I understood what &quot;To Do&quot; and &quot;Not To Do&quot;, I can honestly say I didn&#039;t get the hashing until I read this article and a similar article you wrote.  Very helpful.</description> <content:encoded><![CDATA[<p>Thank you very much&#8230; I have been programming in PHP/MySQL for about 6 years and while I understood what &#8220;To Do&#8221; and &#8220;Not To Do&#8221;, I can honestly say I didn&#8217;t get the hashing until I read this article and a similar article you wrote.  Very helpful.</p> ]]></content:encoded> </item> <item><title>Comment on Creating a Secure Login System the Right Way by qamar</title><link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-9431</link> <dc:creator>qamar</dc:creator> <pubDate>Sat, 28 Jan 2012 15:31:49 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=663#comment-9431</guid> <description>Nice tutorial, You have a great way of making things simple.
cheers</description> <content:encoded><![CDATA[<p>Nice tutorial, You have a great way of making things simple.<br
/> cheers</p> ]]></content:encoded> </item> <item><title>Comment on Creating a Secure Login System the Right Way by David H</title><link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-9429</link> <dc:creator>David H</dc:creator> <pubDate>Sat, 28 Jan 2012 07:25:18 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=663#comment-9429</guid> <description>Terrific article. I was able to get this going very quickly.</description> <content:encoded><![CDATA[<p>Terrific article. I was able to get this going very quickly.</p> ]]></content:encoded> </item> <item><title>Comment on Creating a Secure Login System the Right Way by Tinsley</title><link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-9425</link> <dc:creator>Tinsley</dc:creator> <pubDate>Fri, 27 Jan 2012 19:27:26 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=663#comment-9425</guid> <description>Don&#039;t use cookies. Cookies are stored client side and are sent to the server with each request. Session data is stored on the server. Out of the box PHP uses a cookie to identify each user with their particular session, but this does not allow session data to be manipulated; storing all of the data in cookies would.
What do you mean by multiple logins? Do you mean having multiple users logged into your site at once? If so the answer is yes, you can use sessions.</description> <content:encoded><![CDATA[<p>Don&#8217;t use cookies. Cookies are stored client side and are sent to the server with each request. Session data is stored on the server. Out of the box PHP uses a cookie to identify each user with their particular session, but this does not allow session data to be manipulated; storing all of the data in cookies would.</p><p>What do you mean by multiple logins? Do you mean having multiple users logged into your site at once? If so the answer is yes, you can use sessions.</p> ]]></content:encoded> </item> <item><title>Comment on Creating a Secure Login System the Right Way by Iosif Miclaus</title><link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-9424</link> <dc:creator>Iosif Miclaus</dc:creator> <pubDate>Fri, 27 Jan 2012 18:57:00 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=663#comment-9424</guid> <description>Hello there :)
I really like this article and will surely help me with some security issues i currently have for my project.
I still have a &quot;small&quot; question, that you might be able to answer:
What if I need multiple logins at the same time? Can i still use the $_SESSION variable or should I use $_COOKIE insead?
I hope you can help me :)
Sincerely,
I.M.</description> <content:encoded><![CDATA[<p>Hello there <img
src='http://tinsology.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>I really like this article and will surely help me with some security issues i currently have for my project.</p><p>I still have a &#8220;small&#8221; question, that you might be able to answer:<br
/> What if I need multiple logins at the same time? Can i still use the $_SESSION variable or should I use $_COOKIE insead?</p><p>I hope you can help me <img
src='http://tinsology.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>Sincerely,<br
/> I.M.</p> ]]></content:encoded> </item> <item><title>Comment on PHP Lorem Ipsum Generator by TK</title><link>http://tinsology.net/2009/07/php-lorem-ipsum-generator/comment-page-1/#comment-9362</link> <dc:creator>TK</dc:creator> <pubDate>Sat, 07 Jan 2012 21:10:25 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=810#comment-9362</guid> <description>Thanks a lot for this, I needed something like this for a load testing script.</description> <content:encoded><![CDATA[<p>Thanks a lot for this, I needed something like this for a load testing script.</p> ]]></content:encoded> </item> <item><title>Comment on Unlimited PHP Function Parameters by nikhil</title><link>http://tinsology.net/2009/07/unlimited-php-function-parameters/comment-page-1/#comment-9352</link> <dc:creator>nikhil</dc:creator> <pubDate>Mon, 02 Jan 2012 06:59:21 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=823#comment-9352</guid> <description>nice explaination.
keep it up
thanks :)</description> <content:encoded><![CDATA[<p>nice explaination.</p><p>keep it up<br
/> thanks <img
src='http://tinsology.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>Comment on WP SimpleMail by Blast From the Past &#124; Tinsology</title><link>http://tinsology.net/plugins/wp-simplemail/comment-page-2/#comment-9154</link> <dc:creator>Blast From the Past &#124; Tinsology</dc:creator> <pubDate>Mon, 21 Nov 2011 03:41:43 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?page_id=408#comment-9154</guid> <description>[...]  [...]</description> <content:encoded><![CDATA[<p>[...]  [...]</p> ]]></content:encoded> </item> <item><title>Comment on Unlimited PHP Function Parameters by kanghuda</title><link>http://tinsology.net/2009/07/unlimited-php-function-parameters/comment-page-1/#comment-9064</link> <dc:creator>kanghuda</dc:creator> <pubDate>Wed, 02 Nov 2011 01:56:33 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=823#comment-9064</guid> <description>nice tutorial, now I can make function that multi function without limit of parameter</description> <content:encoded><![CDATA[<p>nice tutorial, now I can make function that multi function without limit of parameter</p> ]]></content:encoded> </item> <item><title>Comment on Creating a Secure Login System the Right Way by mordof</title><link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-9038</link> <dc:creator>mordof</dc:creator> <pubDate>Mon, 24 Oct 2011 22:22:59 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=663#comment-9038</guid> <description>Nice :) Glad you say no to this, heh. Prevents people from just copy+pasting and having no idea what they&#039;re doing ^-^.</description> <content:encoded><![CDATA[<p>Nice <img
src='http://tinsology.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Glad you say no to this, heh. Prevents people from just copy+pasting and having no idea what they&#8217;re doing ^-^.</p> ]]></content:encoded> </item> <item><title>Comment on Creating a Secure Login System the Right Way by Dennis</title><link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-9008</link> <dc:creator>Dennis</dc:creator> <pubDate>Tue, 18 Oct 2011 14:40:36 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=663#comment-9008</guid> <description>This article is the best so far, Thinsley, Please keep up and post or upload more tutorials, you giveaway very useful information.</description> <content:encoded><![CDATA[<p>This article is the best so far, Thinsley, Please keep up and post or upload more tutorials, you giveaway very useful information.</p> ]]></content:encoded> </item> <item><title>Comment on Creating a Secure Login System the Right Way by Tinsley</title><link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-8655</link> <dc:creator>Tinsley</dc:creator> <pubDate>Thu, 18 Aug 2011 20:34:12 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=663#comment-8655</guid> <description>What I meant by that is that you shouldn&#039;t be redirecting users from page to page if you don&#039;t have to. The php file that generates your login form should be the same one that processes the data. This way if there is an error (ie incorrect password) you don&#039;t have to redirect  the user back to the login.</description> <content:encoded><![CDATA[<p>What I meant by that is that you shouldn&#8217;t be redirecting users from page to page if you don&#8217;t have to. The php file that generates your login form should be the same one that processes the data. This way if there is an error (ie incorrect password) you don&#8217;t have to redirect  the user back to the login.</p> ]]></content:encoded> </item> <item><title>Comment on Creating a Secure Login System the Right Way by derp</title><link>http://tinsology.net/2009/06/creating-a-secure-login-system-the-right-way/comment-page-1/#comment-8654</link> <dc:creator>derp</dc:creator> <pubDate>Thu, 18 Aug 2011 13:25:24 +0000</pubDate> <guid
isPermaLink="false">http://tinsology.net/?p=663#comment-8654</guid> <description>really nice tutorial, was very helpful! Could you be a liitle more specific on this: &quot; I don’t recommend, for example, using header() to bounce your users around to different pages&quot;
What methods are recommended?</description> <content:encoded><![CDATA[<p>really nice tutorial, was very helpful! Could you be a liitle more specific on this: &#8221; I don’t recommend, for example, using header() to bounce your users around to different pages&#8221;</p><p>What methods are recommended?</p> ]]></content:encoded> </item> </channel> </rss>
