Question
All I really want is the equivalent of PHP's $_POST[], and after searching the web for an hour, I'm still nowhere closer.
Answer
Your HttpServletRequest object has a getParameter(String paramName) method that can be used to get parameter values. http://java.sun.com/javaee/5/docs/api/javax/servlet/ServletRequest.html#getParameter(java.lang.String)
0 comments:
Post a Comment