"SELECT * FROM student WHERE student_id='{$student_id}'"
คำสั่งนี้จะดึงข้อมูลมาทุก column ครับ เปลี่ยนเป็นอันนี้แทน
"SELECT `name` FROM student WHERE student_id='{$student_id}'"
ส่วนอีกคำถามนึง ตอนแรกเพิ่มโค้ด อีก 2 อัน แต่เปลี่ยน #เป็นชื่อใหม่เช่น #load1 #student_id1 #name1 และ #load2 #student_id2 #name2
$('#load1').click(function(){
//นำค่าจาก textbox scode มาเก็บไว้ในตัวแปร
var s = $('#student_id1').val();
//request แบบ Ajax
$.ajax({
data:{student_id:s}, //ส่งตัวแปร s ไปทาง $_POST['scode']
url:'?load', //ส่งตัวแปรไปทาง url ?load
type:'POST', //ส่งแบบ POST
dataType:'html', //รับข้อมูลแบบ html
success:function(data){ //callback function หลังจากได้รับข้อมูลคืนกลับมา
$('#name1').text(data);
},
error:function(){
alert('error');
}
});
});