Verify if $_GET exists?

if (($_GET['id'])==null){
//code
}

if(isset($_GET['id'])) {
//code
}