I have a database of bands and have successfully coded it to retrieve the band name, genre, description, and url. The band name is linked to a url. I used "$myrow=mysql_fetch_array($result)" to display "<a href=$myrow[3]>$myrow[0]</a>, $myrow[1],$myrow[2]".
Now I want to go beyond this and hyperlink the name of the band to the band's own page where I can format the contents of only one row using these array variables.
I have tried hidden forms and HTTP_POST_VARS, but the values are getting lost somewhere. (The values can be long - such as the band descriptions). Any suggestions?