For a form file upload I'm not able to access the globals.
So for example if the file upload name is $image,
$image_type and $image_size doesn't work.
Meaning, it's returning no values. But $image_name is returning a correct value.
echo "IMAGE NAME IS $image_name";
echo "IMAGE TYPE IS $image_type";
echo "FILESIZE IS: $image_size";
Why is this happening? And how do I fix this? Is it a modification of php.ini file??