I want to save variables to the server so they can be converted back to client side later on other pcs, sort of like local storage but the data is available to all computers who use the site. I am still new to javascript and am learning new things.
Asked
Active
Viewed 357 times
-2
-
Use a database or create some sort of global variable on your backend? – crimson589 Dec 17 '21 at 02:07
-
1start here: https://developer.mozilla.org/en-US/docs/Learn/Server-side – Randy Casburn Dec 17 '21 at 02:10
-
you will need a database – Dec 17 '21 at 02:25
-
See [What is the difference between client-side and server-side programming?](/q/13840429/4642212). – Sebastian Simon Dec 17 '21 at 02:38
1 Answers
0
What you're looking for is a database. A database is a constantly running server that can hold "tables" of data such as user info. If you are new to this concept I recommend google Firebase because it is a beginner friendly back end tool.

Mythic Lisp
- 11
- 1