0
How can i connect php with bootstrap for creating a log in form using mysql..?
3 ответов
+ 5
You can put html codes in php files. Connect your database with php using mysqli_connect.
+ 4
$con = mysqli_connect("your host", "your username", "your password", "default database")
You need to make a user account and a database as well as a web server. And make sure you do <?php ?> if you are inserting php to the file.
0
Can u give the code to connect php with database..?