Yes, I use to do this with my site.


# The original name of the file on the client machine.
$filename = $HTTP_POST_FILES['file']['name'];

# The mime type of the file, if the browser provided this information. An
example would be "image/gif". 
$filetype = $HTTP_POST_FILES['file']['type'];

# The size, in bytes, of the uploaded file.
$filesize = $HTTP_POST_FILES['file']['size'];
 
# The temporary filename of the file in which the uploaded file was stored
on the server. 
$filetemp = $HTTP_POST_FILES['file']['tmp_name'];




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to