关于php(100分)

  • 主题发起人 主题发起人 cqhcqh
  • 开始时间 开始时间
C

cqhcqh

Unregistered / Unconfirmed
GUEST, unregistred user!
php中upload把file传到哪里去了?
详细点
 
老兄,我不能回答你的问题
但是顺便请教:
你的php是装在unix上的吗?
如果是, php+apache ,请告诉我安装的方法,谢谢
 
一? 你是怎么实现upload的? 应该是你自己读取并保存的的呀! 你自己不知道放哪儿了?
 
$userfile - The temporary filename in which the uploaded file was stored on the server machine.
$userfile_name - The original name of the file on the sender's system.
$userfile_size - The size of the uploaded file in bytes.
$userfile_type - The mime type of the file if the browser provided this information. An example would be "image/gif".
Note that the "$userfile" part of the above variables is whatever the name of the INPUT field of TYPE=file is in the upload form. In the above upload form example, we chose to call it "userfile".
 
pws+php
我用的FORM是:
<FORM ENCTYPE="multipart/form-data" ACTION="testf.php3" METHOD=POST name="">
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000">
Send this file: <INPUT NAME="userfile" TYPE="file">
在PHP文件中我用了一个$USERFILE变量,据PHP的英文手册说这个变量临时存储的是上传文
件在服务器上文件名,我用ECHO输出他的内容后,显示是"c://windows//temp//php2"
可我找遍了c:/windows/temp/却没有这个文件.在PHP的英文手册有关handing upload
file时说道这个上传文件应从临时目录中删除或改名,否则该文件会在request结束
时将文件删除.但问题就在这,我如何在request结束前找到该文件.并进行处理
 
</form>
修改贴子错误....
 
cqhcqh: 现在可以结束问题了.. :-)
 
多人接受答案了。
 
后退
顶部