My switch statement used to work fine in the old php version, but after using 4.4.2, the switch statement and the if ($action == '') all become
Notice: Undefined variable: action in /www/b/btzonecom/htdocs/lyric/a-z.php on line 14
and what happen to the syntax of this query?
it used to work in old version
$query = "SELECT * FROM artist WHERE LEFT(english_name, 1) = '".$_GET['letter']."' AND ".$query_region." ORDER BY english_name ASC";
$result=mysql_query($query) or die(mysql_error());