Form Validation Problem

If I’m doing something like this to check if the form was sent


if(isset($_GET['Submit'])){
  //more validation code and queries
}else{
  $message .= "Please resubmit the form";
}

My question is, where is that Submit coming from in the html code? I realize it’s on the actual button in the form, is it the value=“Submit” ?