Forum Moderators: coopster
<a href="listpage.php?bgn=A"> [A] </a>
And on listpage.php you can have something similar to the following:
$bgnl = $_REQUEST['bgn'];
$query = "SELECT * FROM `table` WHERE `field` LIKE '". $bgnl ."%'";
If that is what you are looking for
Habtom
SELECT *
FROM films
ORDER BY STitle ASC
Now if i put this other query in that recordset, will it not overwite the existing statement? Because i have a "First" "Next" "Last" "Previous" etc navigation at the bottom, and i want to add this [A], [B] etc navigation to the top of the page.
Would i need a 2nd recordset for these, and if i do, and the user clicks on [A] will the existing navigation of page scrolling still work?