How can I get the submitted information | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How can I get the submitted information

31st Dec 2022, 5:05 PM
ZZIWA FRANK
ZZIWA FRANK - avatar
2 Answers
+ 2
With the help of javascript You can use getElementById() You can read more about this on the Internet.
31st Dec 2022, 6:01 PM
Knight
Knight - avatar
+ 1
It is not possible to retrieve submitted information from visitors using front-end JavaScript alone. Front-end JavaScript is executed on the client-side (in the user's web browser), and therefore does not have access to the server-side resources and data. In order to retrieve submitted information, a server-side language such as PHP or a serverless backend such as a cloud function would be required to handle the submission and retrieve the data from a database or other server-side resource.
1st Jan 2023, 3:43 AM
Calviղ
Calviղ - avatar