well... submitting multiple files is not a big deal...
just use fields like this:
<INPUT TYPE="file" NAME="file[0]">
<INPUT TYPE="file" NAME="file[1]">
<INPUT TYPE="file" NAME="file[2]">
...
- you can also use a loop for that - and then you process all the submitted data my going through the array:
foreach ($file as $key => $value) {
if ($value && $value != "none") {
//PROCESS THE DATA
}
}
this should work...
i dont really know what you mean by removing attachments - so maybe you could specify this...
rock on..
sid