Hi DJ,
you mean if u register in a site then at url : www.yoursite.com/users/username
will open ur profile page...
this can be done by two methods :
1. By .htaccess ...
2. By creating new folder...
i have done by both ways in my sites...
for folder creations
when any user register then where u have insert query for new user there u can create new folder
mkdir("user/$username",0777);
$dest="user/$username";//folder where u want to copy index file of the user
$curdir=opendir($src1);
while($file = readdir($curdir))
{
echo $file;
copy("companyfront/".$file,$dest."/".$file);
}
"companyfront" is folder where you have index.php for the users...
now in index.php of user file u have to take value dynamically from the table
by reading url and getting username...🙂