How can I make a directory in a UNIX environment using PHP? I know you use a "mkdir" command but not sure how ot use it.
I guess you didnt try searching the php.net site. http://www.php.net/manual/en/function.mkdir.php
I need an example. I have tried the ones on php.net and I still can't get it. I want when a user registers, it creates a directory with the user's name.
I'm not sure then what your problem is. When I try
<? mkdir ("newdir", 0700); ?>
It works fine. Are you getting an error message ?