This is my url: http://server.com/index.php?module=purchases&ticket=12345&getPO=true
<?php
if ($_GET['getPO'] == "true"){
   header("Location:http://google.com");
      echo "Here";
    }else{
      /other stuff...
}
In the above code I see "Here" but I do not get redirected to url. What am i missing? I have confirmed there is no other text being sent to browser, no white space,etc....
 
    