Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

18
  • 2
    Define not working! What is the error you get? Commented Nov 15, 2014 at 19:55
  • Use this for error reporting: <?php error_reporting(E_ALL); ini_set("display_errors", 1); ?> And it works fine for me! Commented Nov 15, 2014 at 19:56
  • 1
    Are you sure you have PHP installed and configured properly? Commented Nov 15, 2014 at 19:56
  • After I fill out the form and submit it, it loads the php page and where the $_POST should be shown it is blank. Commented Nov 15, 2014 at 19:57
  • 1
    If you can't see the output of $_POST, try var_dump($_SERVER);. That should output something. Otherwise, there might be something wrong with your server or PHP install. Your HTML/PHP seems to check out fine. Commented Nov 15, 2014 at 20:02