%@ 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 + "
가입요청메일 - 한국청년기업가정신재단 BCB System
이메일 : ";
c_content = c_content + a_id[i];
c_content = c_content + "
이메일 인증번호 : ";
c_content = c_content + rs_up.getInt("c_rand");
c_content = c_content + "
가입경로 : http://www.c-innovacion.org";
c_content = c_content + "
임시비밀번호를 이용하여 회원가입을 해 주세요.";
c_content = c_content + "
한국청년기업가정신재단";
%>