Here is my jsp
<form action = "first"  > <!-- first servlet -->
    <select name="loginAs">
    <option>Fan</option>
    <option>Club Member</option>
    <option>Admin</option>
    </select>
</form>
Here is my servlet :
protected void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
    String c = req.getParameter("loginAs");
}
but it is still showing as null when I use c
 
     
    