c-innovacion2/apply/main_sub/main_text.jsp

18 lines
665 B
Plaintext

<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<%@include file="/include/include.jsp"%>
<%
String call_home = r_call(request.getParameter("c_home"));
String call_maker = r_call(request.getParameter("c_maker"));
String call_image = r_call(request.getParameter("c_image"));
int c_num = 0;
String sql_sub="SELECT * from tbl_image where c_home = "+ call_home +" and c_maker = "+ call_maker +" and c_relation = 0 and c_view=0 order by c_order asc";
ResultSet rs_sub22 = stmt.executeQuery(sql_sub);
if (rs_sub22.next()) {
%>
<%=rs_sub22.getString("c_exp")%>
<% }
rs_sub22.close();
%>
<%@include file="/include/include_b.jsp"%>