i have a dynamic input type where the number of input types would depend on how many the user wants to have.
now, how do i name and pass that to my jsp?
so far i have
<form action="process.jsp">
<input type="text" name="pic"> // or should it be name="pic[]"?
</form>
and in my process.jsp
String[] picture = request.getParameter("pic");
i only get the first input type and not everything....
any help would be much appreciated