View Single Post
  #5 (permalink)  
Old Jul 23rd, 2005, 16:56
Sheepymot Sheepymot is offline
New Member
Join Date: Jul 2005
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
You could make it really simple:

Code: Select all
if (is_dir($userlogin))
{
header("$userlogin/index.php");
}
else
{
echo("The username doesn't exist");
}
That'd be a very quick way to do it, and there isn't any password.

Sheeps
Reply With Quote