//call the correct script to display reviews based on genre //first we figure out what genre, then run the correct script /* "$QUERY_STRING" is the genre after the question mark in the genre given above */ //$QUERY_STRING = $id; import_request_variables("gP", ""); $result = mysql_query( "SELECT bandname,bio,id,bandimage,member FROM thegauntlet WHERE id = $id" ); while ( $row = mysql_fetch_object( $result ) ) { $bandimage = $row["bandimage"]; $bandname = $row["bandname"]; $bio = $row["bio"]; $member = $row["member"]; // Printing results in HTML echo "
bandimage\" width=180> | \n"; echo "\n"; echo " | $row->member | \n";
echo "
"; echo "$row->bio"; echo "
"; echo "id\">back to $row->bandname\n"; } // Closing connection mysql_close($link); ?>