这里我将登录会话存储在我的$ userId变量中以获取我的id:
$ userId = $_SESSION['result']['id'];
如果用户想要搜索某个名称,我会存储$ _SESSION ['其中']:
if(isset($_POST['sendFiltro'])){
$search = $_POST['search'];
if(!empty($search) && $search != 'Name:'){
$_SESSION['where'] = "AND name LIKE '%$search%'";
header('Location: index2.php?exe=adminis/admins');
}else{
unset($_SESSION['where']);
header('Location: index2.php?exe=adminis/adminis');
}
}
在这里,我执行我的选择陈述,让我的管理员在表格中显示:
$pag = (empty($_GET['pag']) ? '1' : $_GET['pag']);
$max = 10;
$first = ($pag * $max) - $first;
$where = isset($_SESSION['where']) ? $_SESSION['where'] : '';
$readAdmin = $pdo->prepare("SELECT * from admins WHERE id != :id {$where} ORDER BY name ASC, level ASC LIMIT :first, :max");
$readAdmin->bindParam(':id', $userId, PDO::PARAM_INT);
$readAdmin->bindParam(':first', $first, PDO::PARAM_INT);
$readAdmin->bindParam(':max', $max, PDO::PARAM_INT);
$readAdmin->execute();
$readAdminRows = $readAdmin->rowCount();
if(!$readAdminRows)
{
echo 'There are no recors in admins table';
}
else
{
//I show my table
}
我的Admins表中有20个recors,它总是说我的管理表中没有recors。
您是否在我的代码中发现了一些错误?
如果我从我的sql语句WHERE id != :id
中删除它,它可以工作,但我不想在表中显示当前管理员的会话。
答案 0 :(得分:0)
$readAdminRows = $readAdmin->rowCount();
如果将PDO配置为使用无缓冲查询,则rowCount()函数始终返回0:
$pdo->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, false);
我建议您尝试获取结果集的第一行,如果第一次获取仍然没有返回任何内容,则表示您没有匹配项。