This is a page to show details of a band from the database. No errors are coming up it's just all I am getting is the plain text headings, not the actual details themselves. The band name was passed in from a link on a previous page, it works because I've echoed it on this page.
Any help is appreciated.
$bandname = $_GET['bandname'];
$query="SELECT * FROM band WHERE band_name = '$bandname'";
$result=mysql_query($query) or die(mysql_error());
$row = mysql_fetch_array($result);
echo 'Genre: ';
echo $row['genre'];
echo'</br>Comment: ';
echo $row['comment'];
echo'</br>Website: ';
echo $row['website'];