View Single Post
Old 02-20-2006   #4 (permalink)
scrowler
code anyone?
 
scrowler's Avatar
 
Join Date: Feb 2004
Location: New Zealand
Posts: 590

Send a message via MSN to scrowler Send a message via Skype™ to scrowler
$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.
__________________
BioRUST Tutorials - the birthplace
scrowler is offline