|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2001-07-04 14:28 UTC] sniper@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 21:00:02 2025 UTC | 
So I have two pages: 3.phtml: ============================= cut here ================================ <form enctype="multipart/form-data" action="2.phtml" method=post> <input type=hidden name=MAX_FILE_SIZE value="65000"> <input type=file name=att> <input type=submit name=button value="Attach"> </form> ============================= cut here ================================ and 2.phtml: ============================= cut here ================================ <head> <META HTTP-EQUIV="Refresh" <? if(!move_uploaded_file($att,"/somewhere/tmp/$att_name")) exit; echo "CONTENT=\"2;URL=somewhere/tmp/$att_name\"" ?>> </head> ============================= cut here ================================ And the file sent by 2.phtml is not the same like I upload in 3.phtml - if the file is binary. It is already not the same in /somewhere/tmp/ I use Russian Apache 1.3.14PL3.