<%@ 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[] a_id = request.getParameterValues("c_id"); for(int i = 0 ; i < a_id.length ; i++){ String sql_up = " SELECT * from tbl_member where c_id = '" + a_id[i] + "' "; ResultSet rs_up = stmt.executeQuery(sql_up); if (rs_up.next()) { String c_content = ""; c_content = c_content + "

Registration Request E-mail-KOICA BMC System

E-mail : "; c_content = c_content + a_id[i]; c_content = c_content + "
Email verification number : "; c_content = c_content + rs_up.getInt("c_rand"); c_content = c_content + "
Subscription Path : http://bmc.ci.concytec.gob.pe"; c_content = c_content + "

Please register as a member using a temporary password.."; c_content = c_content + "

KOICA"; %>
<% if(i == a_id.length - 1){%> <%}else{%> <%}%>
<% } rs_up.close(); } %> <% %> <%@include file="/include/db/db_close.jsp"%>