Answers for "how to connect a php with a html"

0

connect html to mysql database

$con = mysqli_connect("localhost","your_localhost_database_user","your_localhost_database_password","your_localhost_database_db");
Posted by: Guest on October-06-2020
-1

connect html to mysql database

<?php
//Step1
 $db = mysqli_connect('localhost','username','password','database_name')
 or die('Error connecting to MySQL server.');
?>

<html>
 <head>
 </head>
 <body>
 <h1>PHP connect to MySQL</h1>
</body>
</html>
Posted by: Guest on October-06-2020

Code answers related to "how to connect a php with a html"

Browse Popular Code Answers by Language