I have a table in a database called Artists. It contains two bands. What I would like to do is to be able to click on the bands name using a hyper link, send that bands name to
You need to fetch id of band, and place it into while loop to create dynamic functional links. You could use band name instead of id, but it can lead to errors. Better to do with the primary key.
$id = $row['id'];
" . $row['ArtistName'] . "