I read that any variable declared after a namespace is then part of that namespace. I was confused then when reading about "URL variables":
<?php
namespace OddTeaFlavors
return "
<nav>
<a href='index.php?flavor=acidRain'> Try Our new Acid Rain Flavor! </a>
</nav>
";
Would the URL variable flavor
be part of the OddTeaFlavors
namespace?