Pagination PHP et MySQL : un guide complet
Problème :
Vous avez un MySQL requête qui récupère les données de la table « redirection » en fonction d'un « user_id » spécifique et trie les résultats par « horodatage ». Vous devez implémenter la pagination pour afficher 10 résultats par page.
Solution :
Pour effectuer la pagination en PHP :
<code class="php"><?php // Insert your MySQL connection code here // Define variables $perPage = 10; $page = (isset($_GET['page'])) ? (int)$_GET['page'] : 1; $startAt = $perPage * ($page - 1); // Get total number of rows $query = "SELECT COUNT(*) as total FROM redirect WHERE user_id = '".$_SESSION['user_id']."'"; $r = mysql_fetch_assoc(mysql_query($query)); // Calculate total number of pages $totalPages = ceil($r['total'] / $perPage); // Generate pagination links $links = ""; for ($i = 1; $i <= $totalPages; $i++) { $links .= ($i != $page ) ? "<a href='index.php?page=$i'>Page $i</a> " : "$page "; } // Execute query with pagination applied $query = "SELECT * FROM 'redirect' WHERE 'user_id'= \''.$_SESSION['user_id'].' \' ORDER BY 'timestamp' LIMIT $startAt, $perPage"; $r = mysql_query($query); // Display results ... // Echo pagination links echo $links; // show links to other pages</code>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!