header('Content-Type: text/html; charset=tis-620');
echo "";
include_once('db_config.php');
$sql="SELECT * FROM $_sch";
$result=mysql_query($sql);
echo "
สรุปสมัครแข่งขัน $_title
ที่ |
โรงเรียน |
ประเภท |
จำนวนสมัคร |
";
$tst=0; $rw=1;
while ($db=mysql_fetch_array($result)) {
if ($db[scode] != 000) {
$sql2="select kd_sch from $_data where kd_sch=$db[scode] ";
$result2=mysql_query($sql2);
$nst=mysql_num_rows($result2);
if ($nst==0) {
$nst="-" ;
}
echo <<
$rw |
$db[sname] |
$db[sgrp] |
$nst |
TB;
$tst+=$nst; $rw++;
}
}
$tst=number_format($tst,0,'.',',');
echo "
รวม |
$tst |
";
?>