+ 3
Where does the data go when submitted?
6 Antworten
+ 9
if u use the form method as get then it will be displayed with the action page URL where u can perform certain actions with the submitted information. if u use post method, it will not be displayed in the URL of the action page and u can perform certain actions on the information with a connection to the database.
NOTE- USE OF PHP IS RECOMMENDED AS IT IS NOT DISPLAYED IN THE SOURCE CODE OF THE PAGE
+ 3
on servers database.
+ 2
after submission data goes on data-base via php and manipulated through SQL ...see web-Architecture to get confirm how data flow
+ 1
Thank you!
+ 1
the link what u to form action attribute..