0
PDOを学習しています。PDOでのページ番号の追加
誰でもこのコードで改ページを追加できますか?
誰かが私に一度に10/50/100テーブル行を表示すると嬉しいです。
public function getService(){
global $pdo;
$query = $pdo->prepare("SELECT * FROM `pservice`");
$query->execute();
return $query->fetchALL(PDO::FETCH_ASSOC);
}
for($i = 0; $i < sizeof($result); $i++)
{
echo "<tr>".
"<td>".($i+1)."</td>".
"<td>".$result[$i]["pname"]."</td>".
"<td>".$result[$i]["date"]."</td>".
"<td>".$result[$i]["ecg"]."</td>".
"<td>".$result[$i]["eco"]."</td>".
"<td>".$result[$i]["ecodoppler"]."</td>".
"<td>".$result[$i]["consultationfee"]."</td>".
"<td>".$result[$i]["assesmentfee"]."</td>".
"<td>".$result[$i]["regfee"]."</td>".
"<td>".$result[$i]["consultby"]."</td>".
"</tr>";
}
チェックこの記事http://code.runnable.com/VSpZzVic6P4hfniR/php-pdo-pagination-example-for-mysql – FastTurtle
@nazmulなどhttp://datatables.net/このような外部ライブラリを使用しますページネーションに役立ちます – Rajan