So far i've been able to script a page to put information into a DB, which consists of id,description,binary_data,filetype,filename but really i need to focus on the id and description part.
I need to be able to generate a page that will list the Description and make the description a hyperlink to a page using its respective id in the url.
for example.
id description
1 john
2 sarah
i need to be able to display "john" on a page and have it be a hyperlink to "getdata.php?id=1" and display "sarah" as a hyperlink to "getdata.php?id=2".
I've worked submitting the information and getting it now i just need a way to know which info is what by means of the description rather than building a list by hand based on the id #
Any thoughts, i can think of how to do it, just not exactly how to execute it... hope i've explained it so someone can understand and help me out