I can do this with php4, but I'm trying to restore a project onto a development server running php3. I more or less have to prove that the code worked back then. I'm running tests on just the upload ability now, and in its basest form,it still doesn't jive.
I have no clue if the apache/php installation is the same, so please tell me if there is installation flag that I should have included. The error I get in Netscape is "The document contains no data. Try again later, or contact the server's administrator". IE tells me "The page cannot be displayed".
code (testup.php3):
<FORM ENCTYPE="multipart/form-data" ACTION="testdown.php3" METHOD=POST>
<input type="text" name="color" value="red" size="16"><br>
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000000">
Send this file: <INPUT NAME="userfile" TYPE="file">
<INPUT TYPE="submit" VALUE="Send File">
</FORM>
code (testdown.php3):
<? print "$color<br>\n"; ?>