trying to create upload page.
1st need help geting image size for ex 199mb or kb etc..
2nd resolutiion 1000x39 etc
3rd how can get more information about the image.or camra for ex make, model, Aperture, ocal Length.
4th how to get date when its sumbited
for some reason it is storing the word "ARRAY" in $image_size.
$image_size = getimagesize($_FILES['fileupload']['tmp_name']);
code.
$file = isset($_FILES['fileupload']) ? $_FILES['fileupload']['tmp_name'] : false;
$image = chunk_split(base64_encode(file_get_contents($_FILES['fileupload']['tmp_name']))); //works fine
$image_full_name = $_FILES['fileupload']['name']; //works fine
$image_size = getimagesize($_FILES['fileupload']['tmp_name']); //dont work
$image_res = ..... ([fileupload][tmp_name])
$image_date= ...()
etcc....
many thanks