I have an image upload function that supports multiple files upload, but somehow it only uploads five images at once at most.
I really need it working with like mayb
If you have access to php.ini, try setting the max_file_uploads setting. GoDaddy may have lowered it and you can adjust it in php.ini
max-file-uploads
Never mind, I think I got it.
count($_FILES['upload'])
is wrong. Do
count($_FILES['upload']['name'])
$_FILES['upload'] always has five elements: name, tmp_name, size, type, and error.