[Solved] How to make HTML interact with a database? [closed]
You can’t make HTML directly interacting with database. You should create server-side application, which answer queries generated by HTML forms, JS queries, etc. I am PHP developer, I like this language, so I recommend you using it in your solution. You can read about connecting PHP to MySQL database here: http://www.w3schools.com/php/php_mysql_connect.asp There you have basic … Read more