<?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 Create a Random Password for Users</title>
	<atom:link href="http://www.earn-web-cash.com/2008/02/01/random-password/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.earn-web-cash.com/2008/02/01/random-password/</link>
	<description>Writing, Designing, and Making Money Online</description>
	<lastBuildDate>Sat, 20 Mar 2010 12:30:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: How to Create a Random Password for Users - Tutorial Collection</title>
		<link>http://www.earn-web-cash.com/2008/02/01/random-password/comment-page-1/#comment-30700</link>
		<dc:creator>How to Create a Random Password for Users - Tutorial Collection</dc:creator>
		<pubDate>Fri, 05 Jun 2009 02:28:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/01/random-password/#comment-30700</guid>
		<description>[...] View Tutorial      No Comment  var addthis_pub=&quot;izwan00&quot;; BOOKMARK        This entry was posted on Friday, June 5th, 2009 at 8:02 am and is filed under Php Tutorials. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site. [...]</description>
		<content:encoded><![CDATA[<p>[...] View Tutorial      No Comment  var addthis_pub=&#8221;izwan00&#8243;; BOOKMARK        This entry was posted on Friday, June 5th, 2009 at 8:02 am and is filed under Php Tutorials. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kazet</title>
		<link>http://www.earn-web-cash.com/2008/02/01/random-password/comment-page-1/#comment-4717</link>
		<dc:creator>kazet</dc:creator>
		<pubDate>Mon, 11 Aug 2008 13:44:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/01/random-password/#comment-4717</guid>
		<description>i prefer this my own
$randname = &#039;&#039;;
$chr = &#039;abcdefghijklmnopqrstuwvxyzABCDEFGHIJKLMNOPQGRSTUWVXYZ123456789&#039;;
$num = rand(1, strlen($chr));
while(strlen($randname) &lt;= 10) {$randname .= $chr[$num];}</description>
		<content:encoded><![CDATA[<p>i prefer this my own<br />
$randname = &#8221;;<br />
$chr = &#8216;abcdefghijklmnopqrstuwvxyzABCDEFGHIJKLMNOPQGRSTUWVXYZ123456789&#8242;;<br />
$num = rand(1, strlen($chr));<br />
while(strlen($randname) &lt;= 10) {$randname .= $chr[$num];}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: butzi</title>
		<link>http://www.earn-web-cash.com/2008/02/01/random-password/comment-page-1/#comment-1790</link>
		<dc:creator>butzi</dc:creator>
		<pubDate>Tue, 22 Apr 2008 14:46:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/01/random-password/#comment-1790</guid>
		<description>To see this expamle in action, you could visit my site under the following address:
&lt;a href=&quot;http://www.functions-online.com/en/generate-password.html&quot; rel=&quot;nofollow&quot;&gt;http://www.functions-online.com/en/generate-password.html&lt;/a&gt;

The function i wrote, is something more advanced and has more options to choose.</description>
		<content:encoded><![CDATA[<p>To see this expamle in action, you could visit my site under the following address:<br />
<a href="http://www.functions-online.com/en/generate-password.html" rel="nofollow">http://www.functions-online.com/en/generate-password.html</a></p>
<p>The function i wrote, is something more advanced and has more options to choose.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Walkere</title>
		<link>http://www.earn-web-cash.com/2008/02/01/random-password/comment-page-1/#comment-1389</link>
		<dc:creator>Walkere</dc:creator>
		<pubDate>Tue, 08 Apr 2008 01:43:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/01/random-password/#comment-1389</guid>
		<description>Not sure I understand what your asking.  If you use the code above, you won&#039;t ever get those special characters.

The character ranges specified in the example (0-9, 65-90, 97-122) only includes 0-9, a-z, A-Z.

If you want to include a bunch of random characters, you could add a fourth case for special characters.  Within that fourth case, generate a random number and use that to create a special character based on it&#039;s ASCII code.

However, most passwords exclude special characters, other than maybe underscores.</description>
		<content:encoded><![CDATA[<p>Not sure I understand what your asking.  If you use the code above, you won&#8217;t ever get those special characters.</p>
<p>The character ranges specified in the example (0-9, 65-90, 97-122) only includes 0-9, a-z, A-Z.</p>
<p>If you want to include a bunch of random characters, you could add a fourth case for special characters.  Within that fourth case, generate a random number and use that to create a special character based on it&#8217;s ASCII code.</p>
<p>However, most passwords exclude special characters, other than maybe underscores.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HoaiDuc</title>
		<link>http://www.earn-web-cash.com/2008/02/01/random-password/comment-page-1/#comment-1378</link>
		<dc:creator>HoaiDuc</dc:creator>
		<pubDate>Mon, 07 Apr 2008 06:25:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/01/random-password/#comment-1378</guid>
		<description>I had used this generate code but please I can ask a problem in random code contains special charaters as ^,/,`,.... Is it nescessary ?</description>
		<content:encoded><![CDATA[<p>I had used this generate code but please I can ask a problem in random code contains special charaters as ^,/,`,&#8230;. Is it nescessary ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lauren</title>
		<link>http://www.earn-web-cash.com/2008/02/01/random-password/comment-page-1/#comment-218</link>
		<dc:creator>Lauren</dc:creator>
		<pubDate>Fri, 22 Feb 2008 03:09:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/01/random-password/#comment-218</guid>
		<description>Great explinations i look forward to reading more!</description>
		<content:encoded><![CDATA[<p>Great explinations i look forward to reading more!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harish Kumar</title>
		<link>http://www.earn-web-cash.com/2008/02/01/random-password/comment-page-1/#comment-166</link>
		<dc:creator>Harish Kumar</dc:creator>
		<pubDate>Fri, 15 Feb 2008 07:41:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/01/random-password/#comment-166</guid>
		<description>LOvely tutorial keep up the good work.. keep posting such a beautiful codes. i have bookmarked this page..
and i suggest everyone(All PHP developers) to visit this page and read the articles posted here!!!</description>
		<content:encoded><![CDATA[<p>LOvely tutorial keep up the good work.. keep posting such a beautiful codes. i have bookmarked this page..<br />
and i suggest everyone(All PHP developers) to visit this page and read the articles posted here!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ross</title>
		<link>http://www.earn-web-cash.com/2008/02/01/random-password/comment-page-1/#comment-149</link>
		<dc:creator>ross</dc:creator>
		<pubDate>Tue, 12 Feb 2008 08:54:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/01/random-password/#comment-149</guid>
		<description>this is cool... thanks...</description>
		<content:encoded><![CDATA[<p>this is cool&#8230; thanks&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sue Massey</title>
		<link>http://www.earn-web-cash.com/2008/02/01/random-password/comment-page-1/#comment-120</link>
		<dc:creator>Sue Massey</dc:creator>
		<pubDate>Fri, 01 Feb 2008 21:59:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/01/random-password/#comment-120</guid>
		<description>I found your site on google blog search and read a few of your other posts.  Keep up the good work.  Just added your RSS feed to my feed reader.  Look forward to reading more from you.

- Sue.</description>
		<content:encoded><![CDATA[<p>I found your site on google blog search and read a few of your other posts.  Keep up the good work.  Just added your RSS feed to my feed reader.  Look forward to reading more from you.</p>
<p>- Sue.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
