Hey there, i have this form:
<FORM ENCTYPE="multipart/form-data" ACTION="upload.php" METHOD=POST>
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="100000">
<input type="File" name="userfile" size="30" maxlength="255">
<input type="hidden" name="test" value="this is a test">
<INPUT TYPE="submit" VALUE="upload">
when i call $test from my php file.. It's empty! This is how i start my PHP file:
<?php
print $test."\n";
?>
I am using PHP 4.2.1, standard install, server i am using it on is IIS.