I am trying to understand the difference between this:
if (isset($_POST[\'Submit\'])) { //do something }
and
if ($_POST[
isset will return TRUE if it exists and is not NULL otherwise it is FALSE.