header('Content-Type: text/html; charset=tis-620');
include('../db_config.php');
$sql="select * from sk1_enskill a,sk1_sch b where a.smis=b.smis and
scgrp != 'prv' order by b.sgrp,b.sampur";
$result=mysql_query($sql);
echo "
จำนวนผู้เรียนชั้น ป.6 และ ม.3
ที่เข้ารับการประเมินความสามารถด้านทักษะการสื่อสารภาษาอังกฤษของสถานศึกษา
จำแนกตามผลการประเมิน ภาคเรียนที่ 2/2558 สพป.ศรีสะเกษ เขต 1
กลับ
ที่ |
โรงเรียน |
ชั้นประถมศึกษาปีที่ 6 |
ชั้นมัธยมศึกษาปีที่ 3 |
ทั้ง หมด |
เข้าสอบ |
ไม่ผ่าน |
ร้อยละ |
ผ่าน |
ร้อยละ |
ดี |
ร้อยละ |
ดีเยี่ยม |
ร้อยละ |
ทั้ง หมด |
เข้าสอบ |
ไม่ผ่าน |
ร้อยละ |
ผ่าน |
ร้อยละ |
ดี |
ร้อยละ |
ดีเยี่ยม |
ร้อยละ |
";
$rw=1;
while ($db=mysql_fetch_array($result)) {
$p6p=$db[p6p]+$db[p6g]+$db[p6e];
$m3p=$db[m3p]+$db[m3g]+$db[m3e];
$p6f=$db[p6t]-($db[p6p]+$db[p6g]+$db[p6e]);
$m3f=$db[m3t]-($db[m3p]+$db[m3g]+$db[m3e]);
$pc6f=number_format($p6f*100/$db[p6t],1,'.','');
$pc3f=number_format($m3f*100/$db[m3t],1,'.','');
$pc6p=number_format($db[p6p]*100/$db[p6t],1,'.','');
$pc3p=number_format($db[m3p]*100/$db[m3t],1,'.','');
$pc6g=number_format($db[p6g]*100/$p6p,1,'.','');
$pc3g=number_format($db[m3g]*100/$m3p,1,'.','');
$pc6e=number_format($db[p6e]*100/$p6p,1,'.','');
$pc3e=number_format($db[m3e]*100/$m3p,1,'.','');
if (empty($p6p)) { $col='#fefaeb'; } else { $col='#faecbe'; }
echo "
$rw |
$db[sname] |
$db[p6] |
$db[p6t] |
$p6f |
$pc6f |
$db[p6p] |
$pc6p |
$db[p6g] |
$pc6g |
$db[p6e] |
$pc6e |
$db[m3] |
$db[m3t] |
$m3f |
$pc3f |
$db[m3p] |
$pc3p |
$db[m3g] |
$pc3g |
$db[m3e] |
$pc3e |
";
$rw++;
$tp6+=$db[p6];
$tp6t+=$db[p6t];
$tp6f+=$p6f;
$tp6p+=$db[p6p];
$tp6g+=$db[p6g];
$tp6e+=$db[p6e];
$tm3+=$db[m3];
$tm3t+=$db[m3t];
$tm3f+=$m3f;
$tm3p+=$db[m3p];
$tm3g+=$db[m3g];
$tm3e+=$db[m3e];
}
$tpc6f=number_format($tp6f*100/$tp6t,1,'.','');
$tpc6p=number_format($tp6p*100/$tp6t,1,'.','');
$tpc6g=number_format($tp6g*100/($tp6p+$tp6g+$tp6e),1,'.','');
$tpc6e=number_format($tp6e*100/($tp6p+$tp6g+$tp6e),1,'.','');
$tpc3f=number_format($tm3f*100/$tm3t,1,'.','');
$tpc3p=number_format($tm3p*100/$tm3t,1,'.','');
$tpc3g=number_format($tm3g*100/($tm3p+$tm3g+$tm3e),1,'.','');
$tpc3e=number_format($tm3e*100/($tm3p+$tm3g+$tm3e),1,'.','');
echo "
รวม |
$tp6 |
$tp6t |
$tp6f |
$tpc6f |
$tp6p |
$tpc6p |
$tp6g |
$tpc6g |
$tp6e |
$tpc6e |
$tm3 |
$tm3t |
$tm3f |
$tpc3f |
$tm3p |
$tpc3p |
$tm3g |
$tpc3g |
$tm3e |
$tpc3e |
กลับ";
?>