Guten Tag
Ich habe folgenden Code (objektorientiert) und weiss nicht, wo und wie ich den Code ändern soll, damit das Datum in unserem Format (14.12.2021) statt englisch (2021-12-14) ausgegeben wird.
Ich habe folgenden Code (objektorientiert) und weiss nicht, wo und wie ich den Code ändern soll, damit das Datum in unserem Format (14.12.2021) statt englisch (2021-12-14) ausgegeben wird.
PHP-Code:
include 'functions.php';
// Connect to MySQL database
$pdo = pdo_connect_mysql();
// Get the page via GET request (URL param: page), if non exists default the page to 1
$page = isset($_GET['page']) && is_numeric($_GET['page']) ? (int)$_GET['page'] : 1;
// Number of records to show on each page
$records_per_page = 15;
// 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);
// Get the total number of contacts, this is so we can determine whether there should be a next and previous button
$num_contacts = $pdo->query('SELECT COUNT(*) FROM contacts')->fetchColumn();
Kommentar