<?php if($_GET["Action"] == "Save") { // Statement } ?>
<?php if(isset($_GET["Action"])) { if($_GET["Action"] == "Save") { // Statement } } ?>
<?php $strAction = isset($_GET['Action']) ? $_GET['Action'] : ''; if($strAction == "Save") { // Statement } ?>
<?php error_reporting(~E_NOTICE); if($_GET["Action"] == "Save") { // Statement } ?>