0
How can i save a user input
Which programming Language can be used to save User's inputs, written words etc
2 Respostas
+ 1
You can get user input in html input/trxtarea tag and can access it using js dom manupulation.
Or only with js using prompt.
you can also do it using python but I have no idea except input() method of python for this.
wait for other answer to get python way.
+ 1
1. Store it in the user's computer using WebStorage API.
https://www.sololearn.com/learn/HTML/2197/
https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API/Using_the_Web_Storage_API
2. Store it with a backend-as-a-service(BaaS) e.g Firebase
https://firebase.google.com/docs/database/admin/save-data
3. Create a back end using any programming language of your choice.
https://www.decipherzone.com/blog-detail/top-10-best-backend-frameworks-for-web-development-in-2020