Yeah, I'm having some problems with this query:
PHP Code:
<?
$query2 = mysql_query("SELECT * FROM lyrics WHERE album = \"$results2[cd]\"");
//loop through each array of data as $result3 (song names)
while($results3 = mysql_fetch_array($query2))
{
?>
<div class="center">
<? echo $results3["songtitle"] ?>
</div>
It doesn't want to read it at all and was taking all of their CPU trying to read it, heh...It has to be some kind of syntax error, because the database info reads right...the right tables and the right rows and everything are there...this is rather strange =/
Edit:
OMG I FIXED IT!!! It wasn't 'album', it was CD
