I am trying to understand the difference between this:
if (isset($_POST[\'Submit\'])) { //do something }
and
if ($_POST[
The code
if($_POST['Submit']) { //some code }
will not work in WAMP (works on xampp) on WAMP you will have to use
if (isset($_POST['Submit'])) { //do something }
try it. :)