= 0) { $whereConditions[] = "status = $status"; } if ($type >= 0) { $whereConditions[] = "itype = $type"; } // 当前时间,用于判断投票是否进行中 $now = date('Y-m-d H:i:s'); $whereStr = !empty($whereConditions) ? implode(' AND ', $whereConditions) : ''; // 获取总记录数 $total = $db->count('vote', $whereStr); // 计算分页信息 $pagination = getPagination($total, $page, $pageSize); // 获取投票列表 $orderBy = "addtime DESC"; $limit = "{$pagination['offset']}, {$pagination['pageSize']}"; $voteList = $db->getAll('vote', $whereStr, '*', $orderBy, $limit); // 页面标题 $pageTitle = "投票系统首页"; ?> <?php echo $pageTitle; ?> - <?php echo getSiteTitle(); ?>

投票列表

重置
发起新投票
$now) { $voteStatus = '未开始'; $statusClass = 'vote-status-pending'; } elseif ($vote['endtime'] < $now) { $voteStatus = '已结束'; $statusClass = 'vote-status-ended'; } else { $voteStatus = '进行中'; $statusClass = 'vote-status-active'; } } ?>

100): ?>...

类型:

时间:

浏览:

暂无投票数据