|
|
|
รบกวนทีครับ เมื่อกรอกข้อมูลใน textbox แล้วให้ textbox ตรวจสอบค่าจากฐานข้อมูลในทันที |
|
|
|
|
|
|
|
ใช้ numrow ก็นี่ครับ ให้ไป check จากฐานข้อมูลก่อนครับ ถ้ามีมากกว่้าหนึ่ง ไม่ให้ save ประมาณนั้น ใน แบบ ฝึกมีครับ ลองหาดูครับ เกี่ยวกับการ check ค่าก่อนบันทึกครับ
|
|
|
|
|
Date :
2011-03-28 12:11:06 |
By :
SOUL |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#button').attr('disabled',true);
$('#name').change(function(){
if( $(this).val()!='' ) {
$.ajax({
type: 'POST',
url: "test.php",
data: {name: $(this).val()},
success: function(data){
alert(data);
if(data == '1'){
$('#button').attr('disabled',false);
}else{
$('#button').attr('disabled',true);
}
}
});
}
})
});
</script>
</head>
<body>
<input type="text" name="name" id="name" />
<span id="result"></span>
<input type="submit" name="button" id="button" value="Submit"/>
</body>
</html>
test.php
Code (PHP)
<?php
if( $_POST['name'] == 'John' ){
echo '1';
}
?>
|
|
|
|
|
Date :
2011-03-28 12:56:30 |
By :
ไวยวิทย์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|