我想从退货状态为空的表中获取未退货图书的数量。。。。。。。
<?php
require_once("includes/config.php");
if(!empty($_POST["studentid"])) {
$studentid= strtoupper($_POST["studentid"]);
$sth = "SELECT count(*) as total from tblissuedbookdetails where Studentid=:studentid and retrunstatus=NULL";
$query= $dbh -> prepare($sth);
$query-> bindParam(':studentid', $studentid, PDO::PARAM_STR);
$query-> execute();
$results = $query -> fetchAll(PDO::FETCH_OBJ);
echo "<b>Already Issued: </b>".$results->fetch_array;
echo "<script>$('#submit').prop('disabled',false);</script>";
}
?>
1条答案
按热度按时间e3bfsja21#
基于
print_r
,的$results
之后$query -> fetchAll(PDO::FETCH_OBJ)
包含数据。要访问数据,请使用此选项。
似乎您的查询结果
total = 0
. 如果不是预期的输出,可以检查数据库。