我在比较选择的日期和数据库中的出勤表中的日期时遇到问题。
以下是餐桌出席情况。
表学生
表老师
$class = getfield('class');
$getdata = mysql_query("select * from student where
class = '$class' order by name ") or die(mysql_query);
$getstud = mysql_query("select birth_no from student where class = '$class'") or die(mysql_query);
$getdate = mysql_query("select date from attendance where birth_no = '$getstud'");
if(isset($_POST['date'])){
$date = $_POST['date'];
if($date == $getdate){
//do someting
}
else{
echo 'Date not matched!';
}
}
我尝试执行上面的代码,但它不起作用。有人可以帮我告诉我如何使用表学生的birth_no比较表出勤日期和选定日期吗?谢谢你。