header('Content-Type: text/html; charset=tis-620');
include('../db_config.php');
$sql="select * from sk1sch where spic>='1' order by spic";
$result=mysql_query($sql);
echo "
";
$rw=1;
while ($db=mysql_fetch_array($result)) {
echo "
$rw |
$db[sname] |
รอบ $db[spic] |
ก่อน
หลัง |
";
$rw++;
}
echo "
";
?>