Hi folks
I am tiring to display large nos of database record alphabetically, my code doing it perfectly but the problem is that, there are hundreds of records for each alphabet and page going too long. so i'm tiring to control it by further pagination and i did it successfully but when i;m clicking on 2nd page it display nothing and redirects to hat alphabet page, here is what i have so far
<?php
$alphabet = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');
foreach ($alphabet as $letter) {
echo "<a href=\"?letter=" . $letter . "\">" . $letter . "</a> ¦ ";
}
?>
<?php
require("config/config.php");
require("config/connection.php");
$letter=$_GET['letter'];
//if(isset($letter)){
$query = "SELECT COUNT(*) as num FROM tablename WHERE fieldname LIKE '$letter%'";
$total_pages = mysql_fetch_array(mysql_query($query));
include("pagination.php");
$sql = "SELECT * FROM tablename WHERE fieldname LIKE '$letter%' LIMIT $start, $limit";
$result = mysql_query($sql);
while($rows=mysql_fetch_array($result))
{
echo '<tr><td>'.$rows['fieldname'].'</td></tr>';
}
// }
?>
</table>
<?php echo $pagination; ?>
pls help me on his guys. thanks