I'm working on a page that has a generated table of items coming from a MySQL database. This table doesn't have all of the fields pertinent to each item (for space reasons), so I'd like to set up some way for a user to click on the row, and have them go a page that does have all of the information.
What I'm wondering is what's the best practice for accomplishing this? I don't want code, just to be pointed in the right direction

My idea is to somehow have the page with the list [somehow] send the item id, and then the receiving page can just do the query/display off all the data [the easy part]. My problem is I'm next to totally clueless as to get the id from the sending page. I know that I don't want it to be a radio-button/submit setup; I'd like it to just look and act like a link. Can I send something along with an href? That would certainly make my life easier...
My apologies if this was rambling, incoherent, or in the wrong section.
-Dex