<?php
require_once ('mainfile.php');
include( 'header.php' );
$link = mysql_connect("localhost", "wi930422", "27fabukaRE");
mysql_select_db("wi930422_ppn",$link);
$id=$_GET[id];
$result = mysql_query("SELECT * FROM music where id='$id'", $link);
while($row = mysql_fetch_array($result)){
OpenTable ();
echo "<p><a href='display4.php?id=", $row['id'], "'>", $row['album'], "</a></p>";
}
CloseTable();
include( 'footer.php' );
?>