It looks like your form is missing a name attribute for the submit button . Without this, the $_POST array won't be populated when the form is submitted . Try adding a name attribute to your submit button like this:
<?php
if (isset($_POST['submit'])) {
print_r($_POST);
}
?>