Ok, this is going to sound a little goofy. I have info in a MySql database, which I am retreiving via PHP, then echoing the results to a table. No problem there at all. The issue is that I then want each individual row of the table to be a link to another page which has access to the results variables in that row. The only way I can see to do this is through a form with hidden variables. The problem is that I want either the row itself, or the text within the cells to be the clickable link that opens the other page. I don't want a submit button, and so far as I can tell this only leaves me with either registering all of my results as session variables...(bad idea),... or literally generating each row as an on the fly image in PHP, which I'm afraid would require a great deal of time. Any other suggestions?