Form Data
- form decides how information will be sent
Action
- the action attribute tells the info where to go
- either an absolute url or a relative one
- action location should be set up to recieve data
Method
- determine HOW the data is sent
- most common is : GET, POST
- Get
- asks the server for data to be returned
- the data is appended to the URL
Post
- data is sent through the body and not via the URL.