Say I have a simple form...
How do I call the three different values entered and output them to the screen in the file test.jsp?
<html>
<body>
<form method= "post" action = "test.jsp">
Please select the Honda 2000 features needed <BR>
Aero Screen: <Input type = text Name = "screen"><br>
CD Changer: <Input type = text Name = "cd"><br>
Spoiler: <Input type = text Name = "spoiler"><br>
<input type = "submit" value = "add to shopping cart">
</form>
</body>
</html>