Hi Forrest
To achieve this you’ll have to dive in to some of the more advanced uses of Expression Engine. I recommend that you use the query module to achieve this, cause then you won’t have to enable PHP. Consider the following example:
{exp:query paginate="top" sql="SELECT title,entry_date FROM exp_channel_titles WHERE title LIKE 'a%'"}
{title} - {entry_date format="%Y %m %d"}
{paginate}
{if previous_page}
<a href="http://{auto_path}">Previous Page</a>
{/if}
{if next_page}
<a href="http://{auto_path}">Next Page</a>
{/if}
{/paginate}
{/exp:query}
In the above example I use the LIKE parameter of the SQL query to let the database know that I only want rows(entries) where the title starts with ‘a’. If you want to show content from within custom fields as well then you will have to do another query to the exp_channel_data table 😊
I hope this helps.
/R