I just moved to a new server and my variables are no longer working properly
$result = mysql_query("SELECT * FROM shops WHERE state = '$state' ORDER BY name LIMIT " . $start . ", 14");
If I change the $state to an actual state name it works. And my url is http://www.flinginarrows.com/archeryshops/listlocalshops.php?state=Colorado
The problem is that when I echo $state it's empty. Shouldn't ?state=Colorado in the url essentially be the same as changing state = '$state' to state = 'colorado'?