Pipeline & quot; $ path = dirname (_ FILE _). & quot; php FILE Upload failed
PHP code
Print_r ($ _ FILES); $ name = date ("Ymd_his _"). rand (100,999 ). ". txt "; $ path = dirname (_ FILE __). "/upload /". $ name; $ result = move_uploaded_file ($ _ FILES ["file"] ["tmp_name"], $ path); echo $ result; if (! $ Result) echo $ _ FILES ['file'] ['error']."
"; Else echo" uploaded successfully ";
Why $ _ FILES ['file'] ['error'] is 0? Upload failed
------ Solution --------------------
Open the php error prompt.
------ Solution --------------------
["File"]
The name of the input file is the same as that of the form.
$ Path = dirname (_ FILE _). "/upload/". $ name; ensure that the directory exists.
------ Solution --------------------
Discussion
["File"]
The name of the input file is the same as that of the form.
$ Path = dirname (_ FILE _). "/upload/". $ name; ensure that the directory exists.