Files
web_2025/R3.01/tp/tp3/cinema/src/films.php
T
JARNOUEN DE VILLARTAY Ulysse (SAFRAN AIRCRAFT ENGINES) 09e55a2b28 correction ex2
2026-04-08 16:10:49 +02:00

38 lines
822 B
PHP

<?php
include_once './modeles/modeleFilms.php';
$currentPage = filter_input(
INPUT_GET,
'page',
FILTER_VALIDATE_INT,
['options' => ['min_range' => 1]]
);
if ($currentPage === null || $currentPage === false) {
$currentPage = 1;
}
$perPage = 10;
$data = getFilms($currentPage, $perPage);
$films = $data['films'];
$errorMessage = $data['error'];
$totalFilms = $data['total'];
$totalPages = max(1, (int) ceil($totalFilms / $perPage));
if ($currentPage > $totalPages && $totalFilms > 0) {
$currentPage = $totalPages;
$data = getFilms($currentPage, $perPage);
$films = $data['films'];
$errorMessage = $data['error'];
$totalFilms = $data['total'];
}
//
// on "charge" la vue
//
include_once './vues/header.php';
include_once './vues/vueFilms.php';
include_once './vues/footer.php';