PHP/PDOでページネーションを学習しようとしています。
$limit = 20;
$sth = $conn->prepare("SELECT * FROM directory WHERE user_active != ''");
$sth->execute(array(':county' => $county));
$c = 1;
while ($row = $sth->fetch(PDO::FETCH_ASSOC)) {
echo 'Resutls will be here';
$c++;
}
しかし、次に何をすべきかわからない、誰かが私が参照できる良い出発点を持っているか、または私のためにプロセスを説明することができますか?
ありがとう