Im trying to pass a value through a hyperlink like:
<a href = "linkhandler.php?value='lee' ">
is this the right syntax ???
Im just trying to GET the value
Dont know if anyopne knows JSP well or not but...
i also tried this in JSP:
<a href = "linkhandler.jsp?value='lee' ">
and in linkhandler.jsp i have:
String firstName = request.getParameter("lee");
but when i print firstName its NULL