Try:
<?
$Host="localhost";// Your host.
$User="root"; //or whatever user you are.
$Pass=""; // or password you are using.
$DBName="typh_ent";
$link = mysql_connect($Host,$User,$Pass) or die ("Could not Connect to DB");
mysql_select_db($DBName,$link);
$query = "SELECT name, picture, biography, profile FROM bands WHERE band_id = $id";
$result=mysql_query($query);
$row = mysql_fetch_array($result);
while ($Row=mysql_fetch_array($Result)) {
echo $Row["name"]." | ".$Row["picture"]." | ".$Row["biography"]."<br>";
}
mysql_close($link);
?>
-j
PHP FOREVER!