我想在我的菜单上找一个标签,说明有人还需要完成多少任务。我试图这样做:
public function getTasksCount() {
$stmt = $this->db_connection->prepare("SELECT COUNT(*) FROM tasks WHERE for = ?");
$user = $_POST['user_name'];
$stmt->bind_param('s', $user);
$stmt->execute();
$stmt->bind_result($count);
$stmt->store_result();
if($stmt->num_rows > 0) {
while($stmt->fetch()) {
return "$count";
}
}
$stmt->close();
}
但是,当我这样称呼<?php $adminfunctions->getTasksCount(); ?>
时,我的大部分内容都会消失。 (见下图。)正如你所看到的那样,垂直侧边菜单仍然没问题,但是顶部菜单中的选项已经消失了,当然还有大空白中的内容......有什么帮助吗?
图: