ตรวจสอบ User ซ้ำ โดยการกด Check user ในหน้าเดียว ขอบคุณ
อีกแบบหนึ่งน่ะครับเป็ฯ popup เช็ค
Code (PHP)
<script type='text/javascript'>
function create_popup(){
window.open( "popup_check.php", "popup",
"status = 1, height = 300, width = 300, resizable = 0" )
}
</script>
username :<input type='text' id='username' >
<a href="javascript:void(0)" onclick="create_popup()">check user</a>
popup_check.php
<html>
<head>
<title></title>
</head>
<body>
<?
if($_POST['check']!=""){
$username=trim($_POST['username']);
if($username==""){
echo "ใส่ username ด้วย ";
}else{
include "connect.php";
$query=mysql_query("select * from tbl_user where field_username ='$username' ") or die(mysql_error());
if(mysql_num_rows($query)<1){
echo "<script type='text/javascript'>close_popup('$username')</a>";
}else{
echo " username ซ้ำ";
}
mysql_close();
}
}
?>
<script type='text/javascript'>
function close_popup(username){
window.opener.document.getElementById("username").value=username
window.close();
}
</script>
<form method='post' action=''>
<input type='hidden' name='check'>
username :<input type='text' name='username' >
<input type='submit' value='check user' >
</form>
<body>
</html>
Date :
2011-01-10 11:58:55
By :
keedkean.com
ขอบคุณทุกคน ครับ
Date :
2011-01-10 13:16:09
By :
kamuro
ผมชอบมากเลยครับ Mr.Win ให้ทุกคำตอบ... ขอบคุงมากเลยครับ!
Date :
2011-05-13 11:38:54
By :
melontaro
Load balance : Server 01