我想打一個高分表爲我的網站 我使用PHP,我得到了一個PDO設置排行榜PHP SQL
我有2個表
日誌
id -- the id of incoming log
user_id -- User ID
用戶
ID -- User ID
username -- Username
password -- Pass
email -- email
我要算多少日誌數user_id
進來,並顯示其user_id/username
得到了大多數日誌 ,我必須顯示的用戶名,所以必須通過ID的
我用這個來獲取鏈接用戶總數:
// functions.php:
class stats {
function totalUsers($db) {
$SQL = $db -> query("SELECT COUNT(*) FROM users");
return $SQL->fetchColumn(0);
}
}
// index.php
require_once 'includes/functions.php;
echo $stats -> totalUsers($db);
在代碼方面,到目前爲止您嘗試過了什麼? –
我用這個來獲取用戶總數: 的functions.php: '類統計 { \t功能totalUsers($ DB) \t { \t \t $ SQL = $ DB - >查詢(「選擇COUNT(*)FROM'users'「); \t \t return $ SQL-> fetchColumn(0); \t} } >' 的index.php 'require_once「包括/ functions.php的?; <?php echo $ stats - > totalUsers($ db); '' 沒有真正想到一個工作方式來獲得高分,這就是爲什麼im在這裏發佈 – sicario11
'require_once'includes/functions.php;'如果這是你的真實代碼,那麼缺少一個報價。做'require_once'includes/functions.php';' –