I use this method to uopload files to server
<FORM ENCTYPE="multipart/form-data" ACTION="URL" METHOD=POST>
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000">
Send this file: <INPUT NAME="userfile[]" TYPE="file">
Send this file: <INPUT NAME="userfile[]" TYPE="file">
<INPUT TYPE="submit" VALUE="Send File">
</FORM>
However, how can I get the number of array index inside http_post_var ?
Thx for helping me