servlets thread: How to?
I am having difficulty allowing a user to accept multiple choices from and
html form and then sending it to a database:
Enumeration values = req.getParameterNames();
while (values.hasMoreElements()) {
String name = (String)values.nextElement();
String value = req.getParameterValues (name) [0];
if (name.compareTo("submit") !=0) {
HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1
|





