T trafficman2589 Guest Dec 15, 2008 #1 I have a site and when a user signs up i want to create a folder on the server just for them...is that possible??
I have a site and when a user signs up i want to create a folder on the server just for them...is that possible??
L lansingstudent09101 Guest Dec 15, 2008 #2 yes. mkdir("directoryasstring"); //don't forget to escape backslashes! obviously you can also execute shell commands by enclosing them in backticks (`), but that's horribly unportable.
yes. mkdir("directoryasstring"); //don't forget to escape backslashes! obviously you can also execute shell commands by enclosing them in backticks (`), but that's horribly unportable.