traeregan on 11/10/09
Last Edited at 11/10/09 10:03pm
// Determine Upload Path$upload_path = $upload_root. date('m-d-y', time()); // If Directory for Today's Uploads Does Not Exist Already, Let's Create Itif(!is_dir($upload_path)){ mkdir($upload_path, 0777, true);}
Report this snippet Tweet
Comment:
You need to login to post a comment.