It got me on the right path,however, I did the following code through my own research;
Code:
//make directory PLEASE...
mkdir("/home/thatcomm/public_html/$username");
chmod("/home/thatcomm/public_html/$username", 0777);
Which basically is defining the register.php to make a new directory based off the registered username, and then in turn chmod it to make a new redirect index.php file being created in that same directory using an fopen and fwrite variable(s).
The code works, however when the page goes to insert the redirection code, because of the Javascript nature of the redirect, I get a parse error - I'm probably going to have to make it stripslashes and insert it from a default field in a MySQL table. We'll see.