I\'m trying to learn PHP and I\'m trying to connect a MySQL database with my PHP code to make a submit form that lets me input data into the database. My problem is that the
You can find the POST data in PHP's $_POST variable. It should hold all the values that were passed via the POST method.
$_POST
$name = $_POST["name"];