Quote:
Originally Posted by cinq
You have to define the path in which you want the directory ( with the username ) created 
|
told him so as much on aim last night, then i woke up to see a message that he sorted it.
i suggested;
PHP Code:
//make directory
mkdir($username, 0777);
should've been
PHP Code:
//make directory
$path = "/home/sitename/html/forums/" . $username;
mkdir($path, 0777);
but not sure if that code worked for him or no.