Hi,
Whats a good way to check if file upload field is submitted empty?
Thanks
| SitePoint Sponsor |




Hi,
Whats a good way to check if file upload field is submitted empty?
Thanks
I ususally use is_uploaded_file()
PHP Code:if(use is_uploaded_file($_FILES['myfile']['tmp_name'])){
// do further
}




Ahh of course.
Thanks
Bookmarks