Can anyone see any errors in this code? The database is there, the table is there, and the fields are there. I've triple checked. Username/password is correct too. Nothing's showing up at all. Cheers.
<html>
<head>
<title>phantom309</title>
<?php
$db = mysql_connect("localhost","oobtube","mypassword");
mysql_select_db("oobtube_uk_db",$db);
$requete = "SELECT * FROM songs WHERE id=phantom309";
$result = mysql_query ($requete,$db);
$songs =mysql_fetch_object($result);
mysql_free_result($result);
?>
</head>
<body>
<?php echo $songs->id ?>
<BR>
<?php echo $songs->title ?>
<BR>
<?php echo $songs->lyrics ?>
</body>
</html>