$userfile_name would contain only the name of the submitted file, but you can access other information about the file by using the $_FILES superglobal:
PHP Code:
print_r( $_FILES["name"] );
will output all the data you can use from it. once the file is uploaded you can run regular php functions on the file to obtain more information.