Greetings
i want to create a folder, how will i do this using php? i want to create a folder automatically, and then upload image to different folder.
thanks🙂
look into php function http://us4.php.net/mkdir
you could alternatively do
exec('mkdir dir');
which is, i assume, widly unaccepted and can surely cause huge problems and (maybe) some security issues.
-sijis
thanks sijis🙂