22 lines
708 B
Plaintext
22 lines
708 B
Plaintext
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
|
|
<%@include file="/include/db/db_connect.jsp"%>
|
|
<%@include file="/include/function/function.jsp"%>
|
|
<%request.setCharacterEncoding("utf-8");%>
|
|
<%
|
|
|
|
String c_name = r_call(request.getParameter("c_name"));
|
|
String c_home = r_call(request.getParameter("c_home"));
|
|
|
|
String sql_ok = "";
|
|
sql_ok = "insert into tbl_point_ji (c_home, c_name,c_change,c_use,c_date) values(";
|
|
sql_ok = sql_ok + c_home + ",'" + c_name + "',0,0,now())";
|
|
stmt2.execute(sql_ok);
|
|
%>
|
|
<script>
|
|
alert("등록 되었습니다");
|
|
parent.location.href="list.jsp?c_home=<%=c_home%>"
|
|
</script>
|
|
<%
|
|
|
|
%>
|
|
<%@include file="/include/db/db_close.jsp"%> |