So where / how does this data gets stored or sent to? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

So where / how does this data gets stored or sent to?

<label> Username </label> <input type="text" name="username" placeholder="Username"/> <br /> <label> Password </label> <input type="password" name="password" placeholder="Password" /> <br /> <input type="submit" name="sumbit"/> what type of coding course will i need to make/create a database?

1st May 2020, 6:02 PM
Yamo
Yamo - avatar
1 Answer
0
When the user presses the submit button the data will be send to through http/https request to the webserver which will handle the request. After the request is handled the data will be stored in a database and the user may also receive a confirmation that the data has been successfully stored. To fully undestand what's happening you need to learn a backed language like php. You could also learn NodeJS which is a runtime envirorment for JavaScript. To work with databases you need SQL. Sololearn offers a basic SQL course and I would highly recommend if you want to learn how a database works.
2nd May 2020, 2:12 AM
Abdoul Hakim
Abdoul Hakim - avatar