Link: wizdumb: Dynamic Queries.
This is a question that anybody can answer, but I think you, Bud, are going to be the one who can guide us. We want to be able to run dynamic queries to retrieve information from the database via a search with input fields. This may be beyond the scope of our class but if you believe it is something we could tackle, Tom, Marissa, Elizabeth, and I would appreciate any resources that you believe may help us tackle this challenge.
Someone else could have probably come up with what I am about to say. The main issue here is in defining the requirements. I will address what I think is the simplest version of what you are describing. My cut is that you want a way to search field(s) in the database for the occurrence of certain words. This is not so hard to accomplish. Create a form with a text field for the user to input the word. Then create a query using LIKE (see SQL book) to find all records where that word occurs in the field in question. Start by looking in one field, then extend to other fields.