Possible Duplicate:
How to extract a file extension in PHP?
I wish to get an extension of an image I am uploading but I just get an array back. Is there a way to just get the extension itself
$userfile_name = $_FILES['image']['name'];
$userfile_extn = explode(".", strtolower($_FILES['image']['name']));