"multipart/form-data" is not working in my server. How can i correct this?
<form name="form1" enctype="multipart/form-data" method="post" action="upload.php">
<p>
<input type="file" name="filetoupload">
<input type="hidden" name="test" value="12345">
<input type="submit" name="Submit" value="upload">
</p>
</form>
I am not even getting the hidden value when the form is submitted.
Regards
jacob