This topic is locked

A-Z Pagination

4/20/2016 4:33:27 AM
PHPRunner General questions
mcgeepj2 author

Is there a way to add an A-Z Pagination for first letter of Last Name? I found one writeup from 2010 but could not make it work.

Sergey Kornilov admin 4/21/2016

This is possible and some coding will be required. As a first step go to your list page and run a search for last name that starts with 'a'. This would give you a URL like

employees_list.php?q=(LastName~startswith~a)


So what you need to do is to write a code snippet that would output something like this:

<a href='employees_list.php?q=(LastName~startswith~a)'>A</a>

<a href='employees_list.php?q=(LastName~startswith~<img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=79209&image=1&table=forumreplies' class='bbc_emoticon' alt='B)' />'>B</a>

<a href='employees_list.php?q=(LastName~startswith~c)'>C</a>

...