如何在此代码中添加分页

时间:2012-12-14 12:39:23

标签: php mysql pagination

如何在此代码中添加分页?

我想在一个页面中限制数据,我想在底部:

1 2 3 4 5 6 8 9 10

如果我点击page 2,我会在该页面上显示更多结果。

我该怎么做?

<?php

 //connect to database

     mysql_connect('localhost','root','pasword');
     mysql_select_db('root');


/* Get the letter user clicked on and assign it a variable called $sort */
$sort = $_REQUEST['letter'];

/* Let's check if variable $sort is empty. If it is we will create a query to display all customers alphabetically ordered by last name. */
if($sort == ""){


$qry= "SELECT * FROM tree ORDER BY keywords ASC " ;
}else{
/* if varible $sort is not empty we will create a query that sorts out the customers by their last name, and order the selected records ascendingly. */
$qry = "SELECT * FROM tree WHERE keywords LIKE '$sort%' ORDER BY keywords ASC" ;
}
/* Notice the use of '%' wilde card in the above query  "LIKE '$sort%'". */

//next step is to execute the query.
$execute = mysql_query($qry) or die(mysql_error());

/* Before we display results let's create our alphabetical navigation. The easiest way to create the navigation is to use character codes and run them through the "for" loop. */
echo "<p>" ;
for ($i = 65; $i < 91; $i++) {
    printf('<a href="%s?letter=%s">%s</a> | ',
    $PHP_SELF, chr($i), chr($i));
}
echo "</p>" ;

/* now we are ready to display the results. Since out tbl_customers table has only three fileds we will display the results in a paragraphs. In the real world you may need to display the results in a table.
To display the results we will use "do while" loop to fetch the results. If no customers are found we will display an error message. */
if(mysql_num_rows($execute)>0){
do{
echo "<p>" .$result['id']. " " .$result['keywords']. " " .$result['meaning']. "</p>" ;
}while($result = mysql_fetch_assoc($execute));
}else{
echo "<p>No customer found.</p>" ;
} 
?>

3 个答案:

答案 0 :(得分:1)

首先选择no数据以按行的total_number生成页码,而不是每页的页数

mysql_num_rows($execute);

使用limit命令来限制像这样的数据

$qry= "SELECT * FROM tree ORDER BY keywords ASC limit 0,10 " ;

然后为每个页码增加限制索引

答案 1 :(得分:0)

您可以使用以下代码

$page = $_GET['page'];

if ($page < 1)  
{       
   $page = 1;
}

$conc=mysql_connect('localhost','root','');
mysql_select_db('employer',$conc);

$resultsPerPage = 5; 

$startResults = ($page - 1) * $resultsPerPage;

$query = mysql_query('SELECT * FROM employee ') or die(mysql_error());

$numberOfRows=mysql_num_rows($query);

$totalPages = ceil($numberOfRows / $resultsPerPage);

$query = mysql_query("SELECT * FROM employee LIMIT $startResults,$resultsPerPage");

while ($output = mysql_fetch_assoc($query))
{
$result[]=$output;
}


for($i = 1; $i <= $totalPages; $i++)
{

    if($i == $page)
    echo '<strong>'.$i.'</strong>&nbsp';
else
    echo '<a href="?page='.$i.'">'.$i.'</a>&nbsp';
}

答案 2 :(得分:0)

$page = intval(abs($_GET['page'])); // get security ONE

if(mysql_num_rows($sql)) // get page number to empty location index.php
{
    header('Location: index.php');
}