Hi!

I don't really know, but there seems to be a bug in the file-uploading section... I'll post a sample code here..

--snip--
<?
if(isset($ul)) {
unlink($ul); # just testing.. delete physically
print "Local file: $ul<br>\n";
print "Remote file: $ul_name<br>\n";
print "File size: $ul_size<br>\n";
print "MIME-type: $ul_type<br>\n";
}
?>
<FORM ENCTYPE="multipart/form-data" ACTION="<?=$PHP_SELF?>" METHOD="POST>
<INPUT TYPE="FILE" NAME="ul">
<INPUT TYPE="HIDDEN" NAME="MAX_FILE_SIZE" VALUE="655350">
<INPUT TYPE="SUBMIT" VALUE="Submit">
</FORM>
--snip--

Although everything seems fine, it accepts only the first file uploaded. Then one will have to restart their browsers to make this work... Is this a bug, or am I really doing something wrong?

Thanks for your help!
🙂Mikko

    You have a " missing after 'METHOD="POST'

      Hi,

      Thanks for that, but I wrote the code here, so in the original code it exists.

      🙂MIkko

        Write a Reply...