init
This commit is contained in:
30
WebContent/askq.jsp
Normal file
30
WebContent/askq.jsp
Normal file
@@ -0,0 +1,30 @@
|
||||
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
|
||||
<%@page import="java.sql.*"%>
|
||||
|
||||
|
||||
<%
|
||||
|
||||
try {
|
||||
|
||||
String name= request.getParameter("name");
|
||||
String email= request.getParameter("email");
|
||||
String phone= request.getParameter("phone");
|
||||
String question= request.getParameter("question");
|
||||
|
||||
Class.forName("oracle.jdbc.driver.OracleDriver");
|
||||
Connection con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe","system","oracle");
|
||||
|
||||
PreparedStatement ps=con.prepareStatement("insert into quizq values(?,?,?,?)");
|
||||
ps.setString(1,name);
|
||||
ps.setString(2,email);
|
||||
ps.setString(3,phone);
|
||||
ps.setString(4,question);
|
||||
|
||||
int s= ps.executeUpdate();
|
||||
|
||||
|
||||
}
|
||||
catch(Exception e){e.printStackTrace();}
|
||||
|
||||
%>
|
||||
<jsp:forward page="home.jsp"></jsp:forward>
|
||||
Reference in New Issue
Block a user