Answers for "how to connect a html file with mysql database"

1

connect html to mysql database

$con = mysqli_connect('localhost', 'root', '',’db_connect’);
The “db_connect” is our database name that we created before.
After connection database you need to take post variable from the form. See the below code
$txtName = $_POST['txtName'];
$txtEmail = $_POST['txtEmail'];
$txtPhone = $_POST['txtPhone'];
$txtMessage = $_POST['txtMessage'];
Posted by: Guest on October-06-2020

Code answers related to "how to connect a html file with mysql database"

Browse Popular Code Answers by Language