Connecting html with php | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Connecting html with php

I am trying to connect my database(php) with html file . Both has been created but they are not interconnected . So how can I connect them

21st Jan 2021, 10:47 AM
Swati Ahirwar
Swati Ahirwar - avatar
2 Answers
+ 2
If your site already uses PHP, PHP should connect directly to the database using extensions like PDO or mysqli. mysqli example: https://www.w3schools.com/php/php_mysql_select.asp You have 2 options for bringing data from the database to your web page. 1. Render the outputs in HTML when your page loads. In other words, echo it directly into the HTML written with your PHP script. 2. Use AJAX to fetch data from your PHP script, parse it, and do document model manipulation to make the results visible on your page. This will also require you to write a PHP script that returns JSON format. It sounds like you've never used AJAX so use option 1.
21st Jan 2021, 11:07 AM
Josh Greig
Josh Greig - avatar
0
Ok thanks
25th Jan 2021, 11:09 AM
Swati Ahirwar
Swati Ahirwar - avatar