i have a number of items being posted to a php script, they are a number followed by a letter. the number represents a database id, and the letter represents an graphic to be displayed, eg, 4e, 5p, 444e,2000p.
I want to select the records from a database on the id, so for the above sample data i want to select all records from a table with id's 4,5,444,2000. when displaying these records i want to display the appropiate graphic beside them, either e or p. So, for record with id 4 i want to display e.jpg, for record 5 i want to display p.jpg. is this possible?