+ 5
How I connect this html form to database?
2 Antworten
+ 3
I have used my phone as a database I download bit web server
+ 1
Depends on the type of database (MySQL, SQL server, ...). You'll want to set up a web server (Apache, IIS,...) that receives the posted data from the form.
Typically, server side code, e.g. PHP, C#, Java,... will be responsible for connecting to the database and checking the entered credentials. Look for ADO/entity framework (C#), JDBC (Java), mysqli (PHP).