Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<%

String firstname=request.getParameter("firstname");
String lastname=request.getParameter("lastname");
String mobile=request.getParameter("mobile");
String typeoffood=request.getParameter("typeoffood");
String gender=request.getParameter("gender");
String username=request.getParameter("username");
String password=request.getParameter("password");
try{
Class.forName("com.mysql.jdbc.Driver");
Connection
con=DriverManager.getconnection("jdbc:mysql://localhost:3306/pet","root","root");
statement st=con.CreateStatement;
int i=st.executeUpdate("insert into register
values("'+firstname+'","'+lastname+'","'+mobile+'","'+typeoffood+'","'+gender+'","'
+username+'","'+password+'")");
if(i>o){

%>
<script type="text/javascript">
windows.alert="Registration successfull!!!!";
windows.location="login.html";
</script>
<% } else { %>
<script type="text/javascript">
windows.alert="Registration Failed";
windows.location="Register.html";
</script>
<% }
}catch(Exception e);
out.println(e);
}
%>

You might also like