I'm a PHP coder but need to code some JSP...
I need help... What is the equivalent of this PHP code?
foreach($_POST as $key => $value){
$$key = $value;
}
to jsp code...
further notes: the above codes is just a short cut of something like this,
$name = $_POST['name'];
$age = $_POST['age'];
$gender = $_POST['gender'];
and this sample 3 lines of codes in JSP is,
String name = request.getParameter("name");
Thanks!