What Am I doing wrong??? Here is a section of code I’ve used to pass a variable to a php file
genreType = "Classic Rock";
this.bands_xml.URL = "genre.php?category="+genreType;
this.bands_xml.trigger();
and here is the section of code in the recieving the variable
$key = $HTTP_GET_VARS[category];
//this line selects all fields from the table band_directory
$resultActive = mysql_query("SELECT * FROM band_directory WHERE (primaryID = ".$key." OR secondaryID = ".$key.") AND status = 'Active'");
when I did not pass the variable and set primaryID and secondaryID to Classic Rock The flash file worked. now it doesn’t. Any imput would be appreciated. I would be happy to explain further what I am doing if neccesary