Früher hat man es so gelöst (Deutsche Anzeige: 16.12.2021, statt amerikanische Anzeige: 2021-12-16):
Wie macht man es aber mit der neuen Technik (OOP usw.)? - wo die Daten wie folgt abgefragt werden:
Code
// Prepare the SQL statement and get records from our contacts table, LIMIT will determine the page
$stmt = $pdo->prepare('SELECT * FROM contacts ORDER BY id LIMIT :current_page, :record_per_page');
$stmt->bindValue(':current_page', ($page-1)*$records_per_page, PDO::PARAM_INT);
$stmt->bindValue(':record_per_page', $records_per_page, PDO::PARAM_INT);
$stmt->execute();
// Fetch the records so we can display them in our template.
$contacts = $stmt->fetchAll(PDO::FETCH_ASSOC);