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='$sg' ";
$result=mysql_query($sql);
echo "
ที่ |
โรงเรียน |
นักเรียน(รวม) |
";
$rw=1;
while ($db=mysql_fetch_array($result)) {
$all=$db[p6]+$db[m3];
if ($all >0) { $ast=$all; } else { $ast='-'; }
echo "
$rw |
$db[sname] |
$ast |
";
$rw++; $tstd+=$allstd;
}
$tstd=number_format($tstd,0,'.',',');
echo "
รวม |
$tstd |
";
?>