OK, I have an applet and html file with an applet tag that calls that applet together with some parameters. I need to fetch those parameters dinamicaly, since there might be different number of them. For instance, each parameter could be a sentence, but somethimes there could be 5 of them and the other time, say, 10. Each time my applet needs to know how many of them there is and fatch them all.
I tried naming parameters something like 1,2,3... but to fatch them in a for loop, I first need to know how many of them there are.
for (i = 1; i < ???; i++) {
getParameter into array
}
Thanks!
Sorry for the f... long letter.
Dalibor