Forms capture data, connecting users and systems. We made it. We’ve gone through enough syntax that we’re ready to start looking at some actual concrete examples, like form processing. We’re going to introduce databases and data-persistence in a later article. All we want to know is how do we send data from a form on the client end to a server, wherever that server may live. Once a user submits a form, the form data is sent to a target page using the post method. We can also use the get method, but that’s out of scope for this article. We’ll cover the get method when