โปรเจคค่ะไม่งั้นไม่จบแน่ คืออยากให้พี่ๆ ช่วยดูโค๊ดให้หน่อยค่ะ คือว่าหนูทำระบบส่งเกรดค่ะ
select * from tb_student
left join tb_subject
on(tb_student.id_sub = tb_subject.id_sub)
left join tb_level
on(tb_student.id_level = tb_level.id_level)
where tb_subject.id_sub = ระดับชั้น
and tb_level.id_level = รายวิชา
**** ลองดูนะครับ
Date :
2010-02-08 23:41:48
By :
แอบมาเจอ
น่าจะคล้ายๆที่อยากได้ แก้นิดๆหน่อยๆละกาน
คราบ
search_ajax.php
Code (PHP)
<html>
<head>
<title>drinker</title>
</head>
<script language="JavaScript">
var HttPRequest = false;
function doCallAjax(Search) {
HttPRequest = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,...
HttPRequest = new XMLHttpRequest();
if (HttPRequest.overrideMimeType) {
HttPRequest.overrideMimeType('text/html');
}
} else if (window.ActiveXObject) { // IE
try {
HttPRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
HttPRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!HttPRequest) {
alert('Cannot create XMLHTTP instance');
return false;
}
var url = 'search_db_ajax.php';
var pmeters = 'mySearch='+Search;
HttPRequest.open('POST',url,true);
HttPRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
HttPRequest.setRequestHeader("Content-length", pmeters.length);
HttPRequest.setRequestHeader("Connection", "close");
HttPRequest.send(pmeters);
HttPRequest.onreadystatechange = function()
{
if(HttPRequest.readyState == 3) // Loading Request
{
document.getElementById("mySpan").innerHTML = "Now is Loading...";
}
if(HttPRequest.readyState == 4) // Return Request
{
document.getElementById("mySpan").innerHTML = HttPRequest.responseText;
document.getElementById("txt").innerHTML = HttPRequest.responseText;
}
}
}
</script>
<body Onload="JavaScript:doCallAjax('');">
<h1>My Customer</h1>
<form name="frmMain">
Search <input type="text" name="txtSearch" id="txtSearch" onKeyUp="JavaScript:doCallAjax(document.getElementById('txtSearch').value);">
<br><br>
<span id="mySpan"></span>
<input type="text" name="txt" id="txt" >
</form>
</body>
</html>
search_db_ajax.php
Code (PHP)
<?php
$strSearch = $_POST["mySearch"];
$objCon = mysql_connect("localhost","","") or die("Error Connect Database");
$objDB = mysql_select_db("artdrinker");
$strSQL = "SELECT * FROM customer WHERE CustID LIKE '%".$strSearch."%' ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr> <th width="91"> <div align="center">ID</div></th>
<th width="98"> <div align="center">Name</div></th> </tr>
<?
while($objRst = mysql_fetch_array($objQuery)){
?>
<tr> <td><div align="center"><?=$objRst["CustID"];?></div></td>
<td><?=$objRst["CustName"];?></td> </tr>
<? } ?>
</table>
Date :
2010-02-09 09:49:20
By :
Sek-Artdrinker
ขอบคุณค่ะพี่ๆ ทุกคนค่ะ
แบบที่คุณพี่ Sek-Artdrinker ให้ตัวอย่างมาก็ได้ค่ะแต่ ต้องการให้อาจารย์สามารถค้นหาได้เฉพาะนักเรียนที่ตัวเองเป็นที่ปรึกษาค่ะ ช่วยดูให้หน่อยนะค่ะ ขอโค๊ดตัวอย่างด้วยค่ะ
Date :
2010-02-09 21:51:26
By :
saowaluk052
Date :
2010-02-10 12:33:46
By :
saowaluk052
Load balance : Server 00