|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-27 05:11 UTC] korjenevsky at cplire dot ru
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 09:00:02 2025 UTC |
Configure command: './configure' '--with-apache=../apache_1.3.14rusPL30.1' '--enable-track-vars' All default values in php.ini file. Sample script: <html><body> <? if(!isset($inputfile)){ $script=basename($PHP_SELF); ?> <FORM ENCTYPE="multipart/form-data" ACTION="<?=$script?>" METHOD=POST> <INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="300000"> <INPUT NAME="inputfile" TYPE="file"> <INPUT TYPE="submit" VALUE="Submit!"> </FORM> <? } else{ move_uploaded_file($inputfile,"./uploaded.file"); echo "File is uploaded!"; } ?> </body></html>