<html>
<body>
<?php
require_once("modules/Songs/mainfile.php");
include("modules/Songs/header.php");
OpenTable();
$link = mysql_connect("localhost", "root");
mysql_select_db("nestor", $link);
$result = mysql_query("SELECT * FROM nuke_authors", $link);
echo "<center><b> Cancion: </center></b>".mysql_result($result, 0, "name_cancion")."<br>";
echo "<B> Url: </B>".mysql_result($result, 0, "url")."<br>";
echo "<B> Artista : </b>".mysql_result($result, 0, "artista")."<br>";
echo "<B> Valoracion :</b>".mysql_result($result, 0, "valoracion")."<br>";
echo " ";
CloseTable();
include("modules/Songs/footer.php");
?>
<a href="add.php">Agregar</a>
</body>
</html>