uploads
Posted: Wed May 28, 2003 5:13 am
I try to upload, using this form :
<form name=form action=TestUpload.php enctype="multipart/form-data" method=post>
<input type=hidden name=Id value=20>
<input type=hidden name=MAX_FILE_SIZE value=10000>
<input type=file name=UploadedFile size=50>
<input type=submit value="Send">
With php 4.2.3, I was able to find in $_REQUEST['UploadedFile'] the file informations to process the request, but with 4.3.1 there is nothing.
Is there anything changed ? I read here about HTTP_FILES_VAR ? Is it new ? I can't find it in the whole documentation.
Thanks for help.
<form name=form action=TestUpload.php enctype="multipart/form-data" method=post>
<input type=hidden name=Id value=20>
<input type=hidden name=MAX_FILE_SIZE value=10000>
<input type=file name=UploadedFile size=50>
<input type=submit value="Send">
With php 4.2.3, I was able to find in $_REQUEST['UploadedFile'] the file informations to process the request, but with 4.3.1 there is nothing.
Is there anything changed ? I read here about HTTP_FILES_VAR ? Is it new ? I can't find it in the whole documentation.
Thanks for help.