I'm having trouble with a query that worked fine yesterday. When I hit the page this morning it didn't worky anymore
You can see what's happening here http://www.eyecravedvd.com/dvd/index.php?display=easteregg
The strange part is I get some results. If you click on the letter 'M' in the quick search it returns a value. Same with the later 'P.' There are few that return - sorry no results found when I know there are some for that letter. Here is the piece of code. Any help here would be grand.
Shane
$easterQuery = mysql_db_query($theDB,
"SELECT * FROM $easterEggTable WHERE " .$easterEggArray[DVD_ID]. "=$dvdId")
or die ("\n<BR>Invalid EasterEgg Query<BR>");
$theEasterEgg = mysql_fetch_array($easterQuery);
$eeLink = $theEasterEgg[ $easterEggArray[EE_ID]];
@mysql_free_result($easterQuery);
}