我有一個頁面,所有現在正在我唯一的問題是ciunying從DATABSE記錄功能..PDO計數不工作
Class.user.php
Public function data($count)
{
$stmt=$this->db->prepare("SELECT COUNT(*) FROM login");
$result=$this->db->prepare($count);
$result->execute();
$number_of_rows=$result->fetchColumn();
}
的index.php
<table>
<thead>
<tr>
<th>2014</th>
</tr>
</thead>
<tbody>
<?php
$count="SELECT COUNT(*) FROM login";
$crud->data($count);
?>
的問題在於,其不表示計數..
'SELCT'和'CIUNT'在您的'index.php'中都拼寫錯誤。你的功能是奇怪的,沒有意義 - 爲什麼你準備兩個不同的語句,只執行一個? – ceejayoz
林對不起,它只是一個錯字 – kier
你既不輸出也不返回任何點的計數值。所以,是的,計數將不會顯示。 – deceze