I have a form where user can submit photos and I want to get the image parameters with getimagesize().
Which parameter getimagesize take? getimagesize($_FILES['upload']['tmp_name']) doesn't work
Edit: some code
<?php if($_FILES['upload']['name']){
$image=getimagesize($_FILES['upload']['tmp_name']);
$imgext=image_type_to_extension($image[2]);
echo $imgext;
}
?>
<form enctype="multipart/form-data" action="profile_update.php?process=photo" method="POST">
<input name="upload" type="file"></br>
<input type="submit" id="buttontype" name="submit" />
</form>