okay peeps, its 4am and i'm really tired, but besides that, i can't figure out for the life of me why this code isn't working. First I have an include file... here is the top code + one if statement
$tall = array ("256","224");
$wide = array ("224","256");
$tallbottom = "<img src=\"images/mame/bottom.gif\" width=\"407\" height=\"195\" />";
$widebottom = "<img src=\"images/mame/bottomwide.gif\" width=\"435\" height=\"195\" />";
if ($QUERY_STRING == '1943'){
$game = "1943";
$tall[1] = $height;
$tall[2] = $width;
$tallbottom = $bottom;
}
Now when I go to the page, and try to echo all four variables in the if statement, only the $game variable echos, the rest are nill. Any ideas?
-Thx,
Tony