<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.2" -->
<rss version="0.92">
<channel>
	<title>Programming.SubhashBose.com</title>
	<link>http://programming.subhashbose.com</link>
	<description>Programming.. with one step ahead</description>
	<lastBuildDate>Thu, 28 Feb 2008 15:46:31 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>A random Password Generator script - Full featured</title>
		<description>Here is random Password generator function, it can produce complex passwords of any desired length. It can generate passwords which are alpha-numeric + with special characters (optional) + upper and lower case mixed within it.


 function generateCode($characters,$special_char=false) {
	$possible = '1234567890abcdefghijklmnopqrstuvwxyz';
	    if($special_char)
	      $possible ...</description>
		<link>http://programming.subhashbose.com/a-random-password-generator-script-full-featured/</link>
			</item>
	<item>
		<title>A simple Password Generator</title>
		<description>There are many big and complex Password generator scripts available on the Internet, but often we don't need to go into such complexities.

Here is a simple one-line password generator code in PHP,

       substr(md5(rand()),0,8);



First, a random number is taken, then the MD5 hashing is done ...</description>
		<link>http://programming.subhashbose.com/a-simple-password-generator/</link>
			</item>
	<item>
		<title>What is PHP?</title>
		<description>PHP - HyperText PreProcessor. It is a Open Source, server-side scripting language. Today PHP is one of the most popular and advanced languages. It was first designed by Rasmus Lerdorf in the year 1995, since then it has gained wide popularity and has attained a high position the world of ...</description>
		<link>http://programming.subhashbose.com/php/</link>
			</item>
</channel>
</rss>
