in the client side(through web)
I set up a user defined upload file interface which can be add upload file as they want to.
But then I don't know how many file they upload.
nu=file quantity
<input type=file name=uploadfile[]> (nu=1)
....(nu=2)
.....
Server side
for($i=0;$i<$nu;$i++):
................
how can I know nu is ??