Hi,
My form looks like this:
<form enctype="multipart/form-da
<input type="hidden" name="MAX_FILE_SIZE" value="2000000" />
<input name="photo[]" type="file" /><br />
<input name="photo[]" type="file" /><br />
<input name="photo[]" type="file" /><br />
<input name="photo[]" type="file" /><br />
<input name="photo[]" type="file" /><br />
<input name="photo[]" type="file" /><br />
<input name="photo[]" type="file" /><br />
<input name="photo[]" type="file" /><br />
<input name="photo[]" type="file" /><br />
<input name="photo[]" type="file" /><br />
<input type="submit" value="Upload" />
</form>
And I can process the uploaded files without any problems. But the processing doesn't seem to happen until after all the files are uploaded. I would like to execute some code (hopefully) before each file is sen tby the client.
Thanks,
Rei.
Main Topics
Browse All Topics





by: WoodyRoundUpPosted on 2005-07-18 at 23:39:58ID: 14472755
Yes, of course you can execute the code before displaying.
What do you want to achieve?
Sample code?