Is there the a way to dynamically create folders.
Each time a person creates a new account with my website, a folder in the current directory will automatically be made titled by their user name.
http://us2.php.net/manual/en/function.mkdir.php
mkdir ("/home/domain/www/$FolderName", 0777);
0777 tells it to set directory permissions to CHMOD 777
im sorry for not being clear, im using windows XP and i need to create a folder using the person's username.
Same method, I use XP.
mkdir ("/home/domain/www/$username", 0777);