index.jsp
Simple Form Example
simpleForm.jsp
Simple Form Example
Hello <%= request.getParameter("name") %>.
It must be very interesting being employed as a <%= request.getParameter("job") %>.
I see you enjoy the following hobbies:
<%
String hobbies[] = request.getParameterValues("hobbies");
for (int n = 0; n < hobbies.length; n++) {
%>
<%= hobbies[n] %>
<%
}
%>