79088390

Date: 2024-10-15 04:28:22
Score: 1
Natty:
Report link

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);
}
?>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Diki Agustin