| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2000-10-26 11:15 UTC] triscaner at yahoo dot com
  [2001-05-01 05:47 UTC] andi@php.net
  [2001-05-22 00:57 UTC] derick@php.net
  [2004-08-23 05:16 UTC] drsd at hom dot xom
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 09:00:01 2025 UTC | 
<? //check for file upload if ($set=="go") { if (is_uploaded_file($UploadedFile)) { print("Local File: $UploadedFile <BR>\n"); print("Name: $UploadedFile_name <BR>\n"); print("Size: $UploadedFile_size <BR>\n"); print("Type: $UploadedFile_type <BR>\n"); print("<HR>\n"); } } ?> <FORM ENCTYPE="multipart/form-data" ACTION="73.php" METHOD=POST> <INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1024000"> <INPUT NAME="UploadedFile" TYPE="file"> <INPUT TYPE="hidden" name="set" value="go"> <INPUT TYPE="submit" VALUE="Upload"> </FORM> </BODY> </HTML> The above listing doesn't work on PHP 4.0.1 pl2 and PHP 3.0.17. Symptoms : once file is chosen and Upload button is pressed either browser stays as is (hangs) and the file is not copied into /tmp/ as it should or the browser displays a file not found message and the file is copied and left in /tmp/. this occurs both over the internet (PHP 4.0.1 pl2 as cgi on comercial server) and over ethernet (PHP 3.0.17 as apache static module - test machine) This is experianced with IE 5, IE 5.5, and Netscape 4.7 (netscape pops a "document contained no data" message)