i believe so its calling the database connection with the common.php file i posted above
<?
require "common.php";
echo "<body background='$background' bgcolor='$bgcolor' link='$links' alink='$links' vlink='$link'>";
connectdbase();
$sql="SELECT * from songlist WHERE ID=$songID";
$result=mysql_query($sql);
$data=mysql_fetch_object($result);
?>
thats what its doing at the beginning of the script so i dont understand
|