%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@include file="/field_manager/include/manager_head.jsp"%>
<%
String c_project_no = r_call(request.getParameter("c_project_no"));
String c_type = r_call(request.getParameter("c_type"));
if(c_project_no.equals("")){
%>
<%
}else{
String sql_up = " SELECT c.*, a.c_name as u_name, b.c_name as f_name from tbl_project c ";
sql_up = sql_up + " inner join tbl_project a on a.c_no = c.c_up_no ";
sql_up = sql_up + " inner join tbl_field b on b.c_no = a.c_field ";
sql_up = sql_up + " where c.c_no = " + c_project_no ;
ResultSet rs_up = stmt.executeQuery(sql_up);
if (rs_up.next()) {
%>
<%if(c_type.equals("1")){%>
Insert Instructor
<%}%>
<%if(c_type.equals("2")){%>
Insert Mentor
<%}%>
<%if(c_type.equals("3")){%>
Insert Observer
<%}%>
|
* Please be sure to enter items marked with a mark..
|
|
<%
}
rs_up.close();
%>
<%}%>
<%@include file="/field_manager/include/manager_bottom.jsp"%>