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
Try this
Form Input Data Form Input Employees Data Name Address
In PHP code
$order = "INSERT INTO Trial (name, address) VALUES ('$_POST["name"]', '$_POST["address"]')";