Guys how do i load those inputs on users page when they submit ?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Guys how do i load those inputs on users page when they submit ??

!DOCTYPE html> <html> <head></head> <body> <header> <h1> Account Login </h1> <h3> kadae </h3> </header> <p> Create your account </p> <form<form action="url" method="GET">> <input id="name" type="text" list="username" /> <datalist id="names"> <option value="Mr"> <option value="Mrs"> <option value="Miss"> </datalist> <input name="password" type="text" /> <input type="submit" value="SUBMIT" class="submit" /> </form> <p> Thanks for creating an account </p> </body> </html>

18th Jun 2018, 8:04 PM
Alex Kamau
Alex Kamau - avatar
4 Answers
+ 2
Server reads them, using some server side code e.g. in php, java or c#, then processes and stores or shows on the page it constructs for the user. You can not do it on a client side by html or javascript.
18th Jun 2018, 8:18 PM
Дмитро Іванов
Дмитро Іванов - avatar
0
ooh my. thanks a lot ,
19th Jun 2018, 9:59 AM
Alex Kamau
Alex Kamau - avatar
0
i don't know how to create a server
19th Jun 2018, 10:00 AM
Alex Kamau
Alex Kamau - avatar
0
I can't use the GET method to show users input on the browser?
19th Jun 2018, 10:01 AM
Alex Kamau
Alex Kamau - avatar