hi,
i'm creating some code to upload files, i use $_FILE to get the size...etc :
$file_type = $_FILES['userfile']['type'];
$file_name = $_FILES['userfile']['name'];
$file_ext = strtolower(substr($file_name,strrpos($file_name,".")));
$file_size = $_FILES['userfile']['size'];
...but when i realized to get the date i didn't find info...
My question is, with $_FILES can a get the creation date of the file upload? how can i get that information?
Thanks,
Nelson