ช่วยแก้ปัญหา PHP หน่อยครับ(มือใหม่หัดทำ)

กระทู้คำถาม
มันเเจ้งเตือนแบบนี้ครับ เป็นโค๊ตทำข้อสอบเเละตรวจคำตอบอะครับ แก้อย่างไงครับผมไม่มีความรู้เท่าไหร่ครับ
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\AppServ\www\phen\Untitled-3.php on line 24
ส่วนด้านล่างเป็นโค๊ตที่เขียน
<?php
require_once('Connections/connection.php');
mysql_select_db("u269397334_phen");
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<?php
$score=0;
$numChoice=1;
foreach($_POST as $choice=> $answer){
    if($choice!='button'){
        $sql="Select id From tb_question1_post Where id={$choice} and answer={$answer}";
        $rs = mysql_query($sql);
        if(mysql_num_rows($rs)==1){
            $score++;
        }
        echo'ข้อ:' ,$numChoice,'ตอบ',$answer,'<br/>';
        $numChoice++;
   }
}
$pass="ไม่ผ่าน";
if($score>=5){
        $pass='ไม่ผ่าน';
}
echo 'คะเเนนที่ทำได้',$score,'คะเเนน';
echo'<br/>ผลการทำแบบฝึกหัดก่อนเรียนบทที่1:',$pass;
?>
</body>
</html>
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่