Current File : //home/obabain/public_html/abc/update_ele.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
           <%@ include file="Connection.jsp" %>
            <%@page import="java.sql.ResultSet"%>
            <%@page import="java.sql.*,java.util.*"%>
            
            <%
             Statement st=con.createStatement();
            %>
    
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%
String id=request.getParameter("id");

String a1=request.getParameter("prefix");
System.out.println(a1);
String a2=request.getParameter("elements");
System.out.println(a2);
Statement st1=con.createStatement();
st1.executeUpdate("update elements_specification set prefix='"+a1+"', elements = '"+a2+"' where id="+id);
response.sendRedirect("elements_spe_View.jsp");
%>
</body>
</html>