header('Content-Type: text/html; charset=tis-620');
include('../db_config.php');
$sql="select * from scpic_file,sk1sch
where spc_scode=scode group by spc_scode";
$result=mysql_query($sql);
echo "
รายชื่อ รร.ที่ส่งภาพซ่อมแซมบ้านพักแล้ว
ที่ |
โรงเรียน |
รอบที่ |
ก่อน |
หลัง |
";
$rw=1;
while ($db=mysql_fetch_array($result)) {
$sql1="select * from scpic_file where spc_scode='$db[spc_scode]' and spc_type='0' ";
$result1=mysql_query($sql1);
$pre=mysql_num_rows($result1);
$sql2="select * from scpic_file where spc_scode='$db[spc_scode]' and spc_type='1' ";
$result2=mysql_query($sql2);
$post=mysql_num_rows($result2);
echo "
$rw |
$db[sname] |
$db[spic] |
$pre |
$post |
";
$rw++;
}
echo "
";
?>