phpschool.com에서 퍼옴.
정말 대단합니다...^^
ssn.html//
##########################################
<html>
<body>
<script type="text/javascript">
var xmlhttp = XMLHTTP();
function XMLHTTP() {
try {
xmlhttp = new ActiveXObject("MSXML2.XMLHTTP");
}
catch(e) {
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
function remove_space( str ) {
str = str.replace(/\s+/g,"");
return str;
}
function is_numeric( str ) {
if ( str == str.match(/[0-9]+$/) )
{
return true;
}
else { return false; }
}
function is_ssn( ssn1 , ssn2 ) {
if ( !is_numeric(ssn1) || !is_numeric(ssn2) || ssn1.length != 6 || ssn2.length !=7 ) { return false; }
else { return true; }
}
function chk_ssn() {
var name = remove_space( document.getElementById("name").value );
var ssn1 = remove_space( document.getElementById("ssn1").value );
var ssn2 = remove_space( document.getElementById("ssn2").value );
if ( name == "" )
{
alert('이름을 입력해 주세요');
document.getElementById("name").focus();
return false;
}
else if( !is_ssn( ssn1 , ssn2 ))
{
alert('주민등록번호를 정확히 입력해 주시기 바랍니다.');
document.getElementById("ssn1").focus();
return false;
}
else {
document.getElementById("chk_ssn_msg").innerHTML="실명 확인중입니다.";
try
{
with( xmlhttp ) {
open("POST", "chk_ssn.php", true);
setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
onreadystatechange = function() {
if (xmlhttp.readyState == 4) {
if ( xmlhttp.status==200)
{
var res = remove_space(xmlhttp.responseText) ;
var res_ = res.split("|");
res_no = res_[0];
if ( res_no == 99)
{
document.getElementById("chk_ssn_msg").innerHTML="<a onclick=\"chk_ssn();\">실명인증</a>";
alert('기존에 가입하신 아이디가 있습니다.');
}
else if ( res_no=="1" ) {
document.getElementById("chk_ssn_msg").innerHTML="<a onclick=\"chk_ssn();\">실명인증</a>";
alert('실명확인 성공.');
}
else if (res_no==2 || res_no == 4 )
{
document.getElementById("chk_ssn_msg").innerHTML="<a onclick=\"chk_ssn();\">실명인증</a>";
alert('주민등록번호 오류 입니다. 다시 입력해 주세요.');
}
else {
document.getElementById("chk_ssn_msg").innerHTML="<a onclick=\"chk_ssn();\">실명인증</a>";
if ( confirm('실명이 인증되지 않았습니다. 일반 회원으로 가입하시겠습니까?') )
{
document.getElementById("ssn_form").realSSN.value = "0";
document.getElementById("ssn_form").submit();
}
}
}
}
}
send( "name="+ name +"&ssn1="+ ssn1 + "&ssn2=" + ssn2 );
}
}
catch ( e)
{
}
}
}
</script>
<form>
이름:<input type="text" name="name" id="name" /><br />
주민번호앞: <input type="text" name="ssn1" id="ssn1" maxlength="6" /><br />
주민번호뒤:<input type="password" name="ssn2" id="ssn2" maxlength="7" /><br />
메세지:<span id="chk_ssn_msg"><a onclick="chk_ssn();" style="cursor:pointer;cursor:hand">실명확인</a></span>
</form>
</body>
</html>
#######################################
chk_ssn.php
#######################################
<?
include "../inc/funct/common.inc.php";
include "../inc/funct/db_class.inc.php";
//가입 유저인지 확인 (중복가입 금지)
/*
$que = "SELECT user_id FROM _member_login WHERE ssn='".$_POST['ssn1'].$_POST['ssn2']."'";
$rs = $db->ExecQuery($que);
$chk_num = $db->GetNumrows($rs);
*/
if ( $chk_num > 0 ) {
/*
$id = $db->GetResult($rs,0,0);
echo "99|".$id;
*/
}
else {
$host = "210.207.91.246"; //신용평가원 아이피
$uri = "/servlet/name_check"; //POST 데이타 전송할 URI
$name = iconv( "UTF-8","EUC-KR",$_POST['name']);
/** 수정 **/
$ok_url = "http://okurl";//중요하지 않음
$referer_page = "http://신평에 등록된 실명인증확인 페이지";
$siren_id = "siren 아이디";
/** 수정 **/
$jumin1 = $_POST['ssn1'];
$jumin2 = $_POST['ssn2'];
$reqbody =
"id=$siren_id&name=".urlencode( $name ).
"&jumin1=$jumin1".
"&jumin2=$jumin2".
"&ok_url=".urlencode($ok_url); // 리턴주소 별로 중요하지 않음
$contentlength = strlen($reqbody);
$reqheader = "POST $uri HTTP/1.0\r\n".
"Host: name.siren24.com\r\n".
"Content-Type: application/x-www-form-urlencoded\r\n".
"Referer: $referer_page\r\n".
"Content-Length: $contentlength\r\n\r\n".
"$reqbody\r\n";
$fp = fsockopen( $host , 80 , $err , $err2);
fputs($fp, $reqheader);
$tmp="x";
while ($tmp!="") {
$tmp = $buffer = fgets($fp, 4096);
if (preg_match('/name=result/',$buffer,$aMatch)) {
preg_match('/value=\\"([^\\"]*)\\"/',$buffer,$aMatch);
$result = $aMatch[1];
}
if (preg_match('/<font>/',$buffer,$aMatch)) {
preg_match('/<font>([^\\"]*)\<\/font>/',$buffer,$aMatch2);
$result = $aMatch2[1];
}
//echo $buffer;
}
fclose($fp);
?>
<?
if (!is_numeric( $result ) ) {
$result="0";
}
echo (int)$result;
}
?>
#####################<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]</div>
정말 대단합니다...^^
ssn.html//
##########################################
<html>
<body>
<script type="text/javascript">
var xmlhttp = XMLHTTP();
function XMLHTTP() {
try {
xmlhttp = new ActiveXObject("MSXML2.XMLHTTP");
}
catch(e) {
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
function remove_space( str ) {
str = str.replace(/\s+/g,"");
return str;
}
function is_numeric( str ) {
if ( str == str.match(/[0-9]+$/) )
{
return true;
}
else { return false; }
}
function is_ssn( ssn1 , ssn2 ) {
if ( !is_numeric(ssn1) || !is_numeric(ssn2) || ssn1.length != 6 || ssn2.length !=7 ) { return false; }
else { return true; }
}
function chk_ssn() {
var name = remove_space( document.getElementById("name").value );
var ssn1 = remove_space( document.getElementById("ssn1").value );
var ssn2 = remove_space( document.getElementById("ssn2").value );
if ( name == "" )
{
alert('이름을 입력해 주세요');
document.getElementById("name").focus();
return false;
}
else if( !is_ssn( ssn1 , ssn2 ))
{
alert('주민등록번호를 정확히 입력해 주시기 바랍니다.');
document.getElementById("ssn1").focus();
return false;
}
else {
document.getElementById("chk_ssn_msg").innerHTML="실명 확인중입니다.";
try
{
with( xmlhttp ) {
open("POST", "chk_ssn.php", true);
setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
onreadystatechange = function() {
if (xmlhttp.readyState == 4) {
if ( xmlhttp.status==200)
{
var res = remove_space(xmlhttp.responseText) ;
var res_ = res.split("|");
res_no = res_[0];
if ( res_no == 99)
{
document.getElementById("chk_ssn_msg").innerHTML="<a onclick=\"chk_ssn();\">실명인증</a>";
alert('기존에 가입하신 아이디가 있습니다.');
}
else if ( res_no=="1" ) {
document.getElementById("chk_ssn_msg").innerHTML="<a onclick=\"chk_ssn();\">실명인증</a>";
alert('실명확인 성공.');
}
else if (res_no==2 || res_no == 4 )
{
document.getElementById("chk_ssn_msg").innerHTML="<a onclick=\"chk_ssn();\">실명인증</a>";
alert('주민등록번호 오류 입니다. 다시 입력해 주세요.');
}
else {
document.getElementById("chk_ssn_msg").innerHTML="<a onclick=\"chk_ssn();\">실명인증</a>";
if ( confirm('실명이 인증되지 않았습니다. 일반 회원으로 가입하시겠습니까?') )
{
document.getElementById("ssn_form").realSSN.value = "0";
document.getElementById("ssn_form").submit();
}
}
}
}
}
send( "name="+ name +"&ssn1="+ ssn1 + "&ssn2=" + ssn2 );
}
}
catch ( e)
{
}
}
}
</script>
<form>
이름:<input type="text" name="name" id="name" /><br />
주민번호앞: <input type="text" name="ssn1" id="ssn1" maxlength="6" /><br />
주민번호뒤:<input type="password" name="ssn2" id="ssn2" maxlength="7" /><br />
메세지:<span id="chk_ssn_msg"><a onclick="chk_ssn();" style="cursor:pointer;cursor:hand">실명확인</a></span>
</form>
</body>
</html>
#######################################
chk_ssn.php
#######################################
<?
include "../inc/funct/common.inc.php";
include "../inc/funct/db_class.inc.php";
//가입 유저인지 확인 (중복가입 금지)
/*
$que = "SELECT user_id FROM _member_login WHERE ssn='".$_POST['ssn1'].$_POST['ssn2']."'";
$rs = $db->ExecQuery($que);
$chk_num = $db->GetNumrows($rs);
*/
if ( $chk_num > 0 ) {
/*
$id = $db->GetResult($rs,0,0);
echo "99|".$id;
*/
}
else {
$host = "210.207.91.246"; //신용평가원 아이피
$uri = "/servlet/name_check"; //POST 데이타 전송할 URI
$name = iconv( "UTF-8","EUC-KR",$_POST['name']);
/** 수정 **/
$ok_url = "http://okurl";//중요하지 않음
$referer_page = "http://신평에 등록된 실명인증확인 페이지";
$siren_id = "siren 아이디";
/** 수정 **/
$jumin1 = $_POST['ssn1'];
$jumin2 = $_POST['ssn2'];
$reqbody =
"id=$siren_id&name=".urlencode( $name ).
"&jumin1=$jumin1".
"&jumin2=$jumin2".
"&ok_url=".urlencode($ok_url); // 리턴주소 별로 중요하지 않음
$contentlength = strlen($reqbody);
$reqheader = "POST $uri HTTP/1.0\r\n".
"Host: name.siren24.com\r\n".
"Content-Type: application/x-www-form-urlencoded\r\n".
"Referer: $referer_page\r\n".
"Content-Length: $contentlength\r\n\r\n".
"$reqbody\r\n";
$fp = fsockopen( $host , 80 , $err , $err2);
fputs($fp, $reqheader);
$tmp="x";
while ($tmp!="") {
$tmp = $buffer = fgets($fp, 4096);
if (preg_match('/name=result/',$buffer,$aMatch)) {
preg_match('/value=\\"([^\\"]*)\\"/',$buffer,$aMatch);
$result = $aMatch[1];
}
if (preg_match('/<font>/',$buffer,$aMatch)) {
preg_match('/<font>([^\\"]*)\<\/font>/',$buffer,$aMatch2);
$result = $aMatch2[1];
}
//echo $buffer;
}
fclose($fp);
?>
<?
if (!is_numeric( $result ) ) {
$result="0";
}
echo (int)$result;
}
?>
#####################<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]</div>
댓글 1개
19년 전
ajax 코드로 처리하면 쉬운것을 이전에 왜 그리 페이지 이동을 해서 한글이름 깨지고 ㅜ.ㅜ
동생넘이 asp로 짜면서 ajax코드로 금방 처리해버리더군요.. 헉~! 하는 말밖에.. 덕분에 한가지 배웠지만요..
동생넘이 asp로 짜면서 ajax코드로 금방 처리해버리더군요.. 헉~! 하는 말밖에.. 덕분에 한가지 배웠지만요..
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 660 | ||
| 7629 |
|
10년 전 | 2401 | |
| 7628 | 10년 전 | 796 | ||
| 7627 |
|
10년 전 | 1040 | |
| 7626 |
|
10년 전 | 1796 | |
| 7625 | 10년 전 | 720 | ||
| 7624 | 10년 전 | 737 | ||
| 7623 |
|
10년 전 | 3106 | |
| 7622 | 10년 전 | 738 | ||
| 7621 |
leeleeleelee
|
10년 전 | 591 | |
| 7620 | 10년 전 | 543 | ||
| 7619 | 10년 전 | 498 | ||
| 7618 | 10년 전 | 1033 | ||
| 7617 | 10년 전 | 731 | ||
| 7616 | 10년 전 | 659 | ||
| 7615 | 10년 전 | 732 | ||
| 7614 | 10년 전 | 1273 | ||
| 7613 |
|
10년 전 | 2086 | |
| 7612 | 10년 전 | 1158 | ||
| 7611 | 10년 전 | 1427 | ||
| 7610 |
|
10년 전 | 1909 | |
| 7609 |
|
10년 전 | 1361 | |
| 7608 |
mwdkim
|
10년 전 | 1140 | |
| 7607 |
|
10년 전 | 1067 | |
| 7606 |
mwdkim
|
10년 전 | 3942 | |
| 7605 | 10년 전 | 695 | ||
| 7604 | 10년 전 | 1034 | ||
| 7603 | 10년 전 | 1658 | ||
| 7602 |
|
10년 전 | 1082 | |
| 7601 |
AniNest
|
10년 전 | 2799 | |
| 7600 |
port443
|
10년 전 | 1041 | |
| 7599 | 10년 전 | 952 | ||
| 7598 | 10년 전 | 1031 | ||
| 7597 | 10년 전 | 4582 | ||
| 7596 |
SeungYeon
|
10년 전 | 902 | |
| 7595 |
untitled
|
10년 전 | 2432 | |
| 7594 |
프로그래머7
|
10년 전 | 1742 | |
| 7593 |
untitled
|
10년 전 | 2386 | |
| 7592 |
untitled
|
10년 전 | 1951 | |
| 7591 |
untitled
|
10년 전 | 2682 | |
| 7590 |
아리마2001
|
10년 전 | 859 | |
| 7589 | 10년 전 | 1117 | ||
| 7588 |
|
10년 전 | 2927 | |
| 7587 | 10년 전 | 1312 | ||
| 7586 | 10년 전 | 676 | ||
| 7585 | 10년 전 | 1703 | ||
| 7584 | 10년 전 | 1417 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1172 | |
| 7582 |
|
10년 전 | 1126 | |
| 7581 | 10년 전 | 1362 | ||
| 7580 | 10년 전 | 1014 | ||
| 7579 |
|
10년 전 | 611 | |
| 7578 | 10년 전 | 1434 | ||
| 7577 |
|
10년 전 | 1879 | |
| 7576 | 10년 전 | 1392 | ||
| 7575 |
멋진남자임
|
10년 전 | 1472 | |
| 7574 | 10년 전 | 2128 | ||
| 7573 | 10년 전 | 3262 | ||
| 7572 | 10년 전 | 766 | ||
| 7571 |
|
10년 전 | 786 | |
| 7570 |
|
10년 전 | 1322 | |
| 7569 | 10년 전 | 1559 | ||
| 7568 |
this1mg
|
10년 전 | 1056 | |
| 7567 |
|
10년 전 | 772 | |
| 7566 | 10년 전 | 921 | ||
| 7565 |
Angel하늘
|
10년 전 | 1015 | |
| 7564 |
seoldi
|
10년 전 | 1253 | |
| 7563 |
|
10년 전 | 1398 | |
| 7562 |
멋진남자임
|
10년 전 | 2096 | |
| 7561 | 10년 전 | 717 | ||
| 7560 |
leeleeleelee
|
10년 전 | 920 | |
| 7559 | 10년 전 | 5056 | ||
| 7558 |
RinaP
|
10년 전 | 791 | |
| 7557 |
|
10년 전 | 1257 | |
| 7556 | 10년 전 | 1200 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1672 | |
| 7554 | 10년 전 | 1101 | ||
| 7553 |
senseme
|
10년 전 | 1343 | |
| 7552 |
ehdltdoit
|
10년 전 | 1442 | |
| 7551 |
|
10년 전 | 1833 | |
| 7550 |
leeleeleelee
|
10년 전 | 1597 | |
| 7549 | 10년 전 | 2437 | ||
| 7548 | 10년 전 | 1852 | ||
| 7547 |
멋진남자임
|
10년 전 | 1970 | |
| 7546 | 10년 전 | 1011 | ||
| 7545 |
ILMare1003
|
10년 전 | 1298 | |
| 7544 |
|
10년 전 | 1259 | |
| 7543 | 10년 전 | 895 | ||
| 7542 | 10년 전 | 665 | ||
| 7541 |
울라라라우
|
10년 전 | 873 | |
| 7540 | 10년 전 | 1603 | ||
| 7539 | 10년 전 | 946 | ||
| 7538 |
|
10년 전 | 1837 | |
| 7537 | 10년 전 | 3621 | ||
| 7536 |
Gaumi
|
10년 전 | 1420 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1282 | |
| 7534 |
senseme
|
10년 전 | 1211 | |
| 7533 | 10년 전 | 1208 | ||
| 7532 | 10년 전 | 871 | ||
| 7531 | 10년 전 | 2063 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기