Skip to content

Commit

Permalink
Correct the sentence
Browse files Browse the repository at this point in the history
Either "client and server side;" or "client-side and server-side;" is correct but I chose the latter one because I thought it is more consistent.
  • Loading branch information
josuke0227 authored Sep 29, 2024
1 parent 58d79e9 commit 373a1ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/en-us/learn/forms/your_first_form/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ The last part, and perhaps the trickiest, is to handle form data on the server s
The {{HTMLelement("form")}} element defines where and how to send the data thanks to the [`action`](/en-US/docs/Web/HTML/Element/form#action) and [`method`](/en-US/docs/Web/HTML/Element/form#method) attributes.
We provide a `name` attribute for each form control.
The names are important on both the client- and server-side; they tell the browser which name to give each piece of data and, on the server side, they let the server handle each piece of data by name.
The names are important on both the client-side and server-side; they tell the browser which name to give each piece of data and, on the server side, they let the server handle each piece of data by name.
The form data is sent to the server as name/value pairs.
To name the data in a form, you need to use the `name` attribute on each form widget that will collect a specific piece of data.
Expand Down

0 comments on commit 373a1ec

Please sign in to comment.