[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 information about handling data sent by POST:
http://www.w3schools.com/php/php_forms.asp

If you have any troubles during develop proccess try Google before, then if didn’t find answer ask specific and well described question on Stack Overflow.

Best luck!

8

solved How to make HTML interact with a database? [closed]