ok i have a custom query that ive entered into DRW. The query is as followsSELECT person.lastname, person.firstname, photo.file
FROM person, photo
WHERE person.personID = photo.personID
This query returns every persons last name, first name, and path to there photo file (which i have a link to show photo). Problem is I have many records. What i would like to be able to do is have this query so it will allow me to search by the persons LAST NAME, so that when the page is viewed, the user can Input a last name, hit submit and have that persons last name, first name and photo file returned. Any ideas?? im stumped.