id has been passed successfully to this page from another. once i've matched up the correct Id in the loop to the Id in my table, i want to display the data.
$query = "SELECT * FROM bands WHERE ID=' ".$_GET['ID']." ' ";
$result = mysql_query($query)
or die (mysql_error());
$num_results = mysql_num_rows($result);
$row = mysql_fetch_assoc($result);
// nothing is echoing onto the page...there is no value for ID
// I think...
echo ($row['name']);
any ideas?