-1

I am a newbie in using HTML5 web database. If I create a website using it and host it, different users will have their own different databases as the database is created in the user's local machine.

Is it possible to create a HTML5 web database in the project's directory itself so that every user will access the same database?

Specifically I need to use a programming language like Java

Makoto
  • 104,088
  • 27
  • 192
  • 230
Saurabh Saxena
  • 3,005
  • 10
  • 31
  • 46

1 Answers1

-1

Yes it is, but you will need backend logic to make the connection with the database.

As a backend programation language you can use PHP, Python, Ruby, etc.. pair it with a framework, and it should be much more manageable..

I use python, and a framework, easy to use is flask.

Alejandro
  • 434
  • 1
  • 3
  • 13