Viewing file: report_sy_list.php (3.84 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="style.css" />
<?php
//$localhost_s = $_POST["localhost_s"];
//$localhost_u = $_POST["localhost_u"];
//$localhost_p = $_POST["localhost_p"];
//echo "tUsername = $tUsername<br>";
//echo "tPassword = $tPassword<br>";
//echo "dbNo = $dbNo<br>";
// echo "dbNo = $dbNo<br>";
//echo '<br><br>เริ่มลบข้อมูล<br>';
$dbreg = $_POST["dbreg"];
$dbmoreg = $_POST["dbmoreg"];
$dbppc = $_POST["dbppc"];
$oums = $_POST["oums"];
$nums = $_POST["nums"];
$host = $_POST["localhost_s"];
$tUsername = $_POST["localhost_u"];
$tPassword = $_POST["localhost_p"];
$dbNo = $_POST["dbNo"];
$ln_reg = mysql_connect($host, $tUsername, $tPassword, true);
if (!$ln_reg) {
echo "<font color='#FF0000'>$source_s";
die(' ไม่สามารถเชื่อมต่อฐานข้อมูลได้ ตรวจสอบชื่อ server, user และpassword ให้ถูกต้อง: ' . mysql_error());
echo "</font >";
}else{
//echo "Connected $source_s successfully<br>";
}
$db_info = mysql_select_db($dbreg, $ln_reg);
//mysql_query("SET NAMES 'utf8'", $ln_info);
if (!$db_info) {
die ('ไม่สามารถเชื่อมต่อฐานข้อมูล'.$dbmoreg.'ได้: ' . mysql_error());
}else{
//echo " เชื่อมต่อฐานข้อมูล $dbreg สำเร็จ<br>";
}
//echo "<br><br>";
$query = "SELECT sm.studentId,studentCode,studentName,studentSurname ,count( passStatus ) AS passStatus
FROM $dbreg.StudentStatus ss
INNER JOIN $dbreg.StudentMaster sm ON sm.studentId = ss.studentId
WHERE passStatus IN (1,2,3)
GROUP BY ss.studentId
HAVING count( passStatus ) >3";
?>
<table class='tb_1' width='100%' >
<tr align=''><th class='h2'>Query ที่ใช้ในการตรวจสอบ </th></tr>
<tr align=''>
<td class='h2'>
<?php
echo $query;
?>
</td>
</tr>
</table>
<table border="1" class='tb_1'>
<?php
mysql_query("SET NAMES UTF8", $ln_reg);
$result = mysql_query($query, $ln_reg);
$num_rows = mysql_num_rows($result);
?>
<tr><th colspan="9" align="right">ผลลัพธ์ ข้อมูล <?php echo $num_rows; ?> แถว</th></tr>
<tr>
<th>ลำดับ</th>
<th>studentId</th>
<th>รหัสนักศึกษา<br>studentCode</th>
<th>ชื่อ<br>studentName</th>
<th>นามสกุล<br>studentSurname</th>
<th>จำนวนครั้งที่เลื่อนชั้น<br>passStatus</th>
</tr>
<?php
$index = 1;
$stdId = 0;
$tr_class = '#e5e5e5';
while ($cur_row = mysql_fetch_object($result)) {
if($index%2 == 0)
$tr_class = '#d3dce3';
else
$tr_class = '#e5e5e5';
$style = "style='background-color: $tr_class ;'";
?>
<tr >
<td <?php echo $style; ?>><?php echo $index; ?></td>
<td <?php echo $style; ?>><?php echo $cur_row->studentId; ?></td>
<td <?php echo $style; ?>><?php echo $cur_row->studentCode; ?></td>
<td <?php echo $style; ?>><?php echo $cur_row->studentName; ?></td>
<td <?php echo $style; ?>><?php echo $cur_row->studentSurname; ?></td>
<td <?php echo $style; ?>><?php echo $cur_row->passStatus; ?></td>
</tr>
<?php
$index++;
}
mysql_free_result($result);
if($index == 1){
?>
<tr ><td align='center' colspan='6'>
ไม่พบข้อลูกการเลื่อนชั้นปีเกิน 3 ครัง
</td></tr>
<?php
}
?>
</table >
|