I search a lot of solution but neither is working. Can anyone help me with this storing the textarea from JSP into MySQL and retrieve it? Thanks a lot!
<html>
<head>
<%
String ta1 = request.getParameter("ta1");
%>
</head>
<body>
<form action="testing.jsp" name="form" id="form" class="form">
<textarea cols="10" rows="10" id="ta1" name="ta1"></textarea>
<input type ="submit" value="submit"/>
</form>
<%= ta1%>
</body>
</html>
Sorry for the trouble. It's solved.
Just solve get Parameter which I use array before this.