I have a form with 5 file uploads
All filenames are userfile[] in the form.
i.e
<input name="userfile[]" type="file" />
how can I check on the next page if each one of these has been set like with isset
I dont know how to reference the array of files
example
if(isset(userfile[0])) {
do something
}
if(isset(userfile[1])) {
do something
}
Can i reference them this way?
Thanks