0
How to add database in my html? Im curious newbie here
Database
2 Respuestas
+ 2
Well you can't add database directly in to the html. There is front-end (i.e. where you see your content) and there is a back-end(i.e. from where your content comes from) to every web app. You would need to script the back-end with any available scripting languages like javaScript, perl, PHP etc. You would also need a database program like Mongodb, SQL etc to deal with the database.
The popular combination of technologies for client-server-database are:
1. html/css/js - nodejs - Mongodb
2. html/css/js- php- SQL
and others.
0
Thanks for the information 😊