我嘗試了4天關於製作分頁系統的搜索,但我無法理解因特網上的任何代碼,因爲我是新手。如何使用PHP MySQLi製作分頁系統面向對象
這裏是我的代碼:
$sql = "SELECT name_id, name FROM TABLE WHERE tag1 in ('$tag1') OR tag2 in ('$tag1') $andor tag2 in ('$tag2') OR tag1 in ('$tag2') ORDER BY rating desc LIMIT 5 OFFSET 0";
$result = $conn->query($sql);
分頁的html代碼:
<div class='pagination'>
<a>1</a>
</div>
我不知道該怎麼辦。你能向我解釋這段代碼嗎?
的可能的複製[PHP分頁與庫MySQLi(http://stackoverflow.com/questions/26041382/php-pagination-with-mysqli) – GilZ