My band database uses the following code to retrieve rows containing band name (linked to url), genre, and description:
while ($myrow=mysql_fetch_array($result)){
printf("<tr>
<td><a href=\"$myrow[3]\">%s</a></td>
<td>%s</td>
<td>%s</td>
</tr>\n", $myrow[0], $myrow[1], $myrow[2], $myrow[3]);
}
How can I pass these $myrow[] variables to another php page where I will format the contents of only one row on a page? In other words, I want the band name linked to something like "bandpage.php", rather than the url from the database ($myrow[3]). I have tried hidden forms and HTTP_POST_VARS, but cant get any results.
Thanks for the help.