+ 8
Storing Input
Is there any way to store the input(like type text and type password) of your user(in a var bv.)?
4 odpowiedzi
+ 6
Local storage, to store data in the browser.
File storage, via PHP, direct store text data in files.
Database, data storage via SQL via PHP.
+ 6
in javascript pls?
+ 5
Local strage is in JavaScript.
JavaScript has many limitation in file managing.
You can store data in a file creating a blob and downloading the blob as a file.
Take a look to the save function of this program:
https://code.sololearn.com/WhAk5YF0f5Av/?ref=app
This may help you
+ 4
Local storage, session storage, or cookies. If you're looking to do something on the backend, look at a serverside language (eg. C#, Java, PHP)