I've got a piece of code that will populate the table I have but it will not add the proper link. The reason this is confusing is because if it is returning the proper title why wouldn't it grab the right Id for the link?
Here is the link to the page to see it in action http://www.eyecravedvd.com/dvd/index.php?display=easteregg
Here is the code that is displaying the titles
$easterQuery = mysql_db_query($theDB, "SELECT * FROM easterEggs INNER JOIN
dvd ON easterEggs.dvdId=dvd.dvdId")
or die ("\n<BR>Invalid Easter Egg Query [$eQuery]<BR>");
$theEasterEgg = mysql_fetch_array($easterQuery);
$eggId = $theEasterEgg['eeId'];
@mysql_free_result($easterQuery);