PHP 8.4.24 Released!

Voting

: nine minus zero?
(Example: nine)

The Note You're Voting On

ymlmau at gmail dot com
5 years ago
Best way to check if $_FILES is empty or not is to check if the name of the index 0 is set. 

<?php 
if ($_FILES['fieldname']['name'][0] != ""){
 //Code goes here!
}
?>

<< Back to user notes page

To Top