Computer Science, asked by Anonymous, 1 month ago

How is form data processed when the form is submitted? Are there any pre- requisites for form processing?​

Answers

Answered by AbhinavRocks10
1
  • Using Form in a View

In Django, the request object passed as parameter to your view has an attribute called "method" where the type of the request is set, and all data passed via POST can be accessed via the request. POST dictionary. The view will display the result of the login form posted through the loggedin. html.

Answered by riyamithrabinda2003
1

Answer: When a user submit the above contact form through clicking the submit button, the form data is sent to the "process-form. php" file on the server for processing. It simply captures the information submitted by the user and displays it to browser.

Explanation: hope it helps

please mark me as brainliest

Similar questions