I want to upload files with PHP and i use move_uplload_files to copy them to the destination folder I want, everything works fine with this :
if (move_upload
Use something like this:
$folder = "uploads"; if(!is_dir($folder)) mkdir($folder);
is_dir() checks if the folder is there.