ich versuche gerade die Pagination Klasse in einem Modul zu verwenden.
https://friendsofredaxo.github.io/trick ... ation.html
Code: Alles auswählen
<?php
$anzahl = 1;
$page = $_GET[page];
$db_table = "rex_mytable";
$sql = rex_sql::factory();
$sql->setDebug(true); //Ausgabe Query
$sql->setQuery("SELECT * FROM $db_table limit $page, $anzahl");
$total = $sql->getRows();
foreach($sql as $row)
{
if ($row->getValue("titel") != "")
{
$titel = $row->getValue("titel");
echo $titel."<br />";
$bild = $row->getValue("bild");
echo '<img src="index.php?rex_media_type=yform_mini&rex_media_file='.$bild.'"><hr />';
}
}
$pagination = new Pagination($total, $page, $limit);
echo $pagination->show();
?>
Das Backend ist dann bei diesem Artikel nicht mehr erreichbar.
Die Klasse habe ich hier abgelegt: /redaxo/src/addons/project/lib/
Bitte um Hilfe
Gruß
Christoph