<?php 
if(isset($_GET["swag"]) && !empty($_GET["swag"]))
{
   if($_GET["swag"] == true)
   {
      echo "oh man, this nigga rightt here got some swag";
   }
   else
   {
      echo "No swag for this mofo";
   }
}
?>