The following URL gets cut off after the ampersand.\[code\]http://localhost:8888/teams/ncaa/Alabama%20A%26M%20Bulldogs\[/code\]The last parameter ($_GET['team']) gets cut off so that when I echo it out, it's simply\[code\]Alabama A\[/code\]That parameter is encoded as follows\[code\]echo "<a href='http://stackoverflow.com/teams/ncaa/".urlencode($team[$i])."'>".$team[$i]."</a>";\[/code\]