Update working with forms

This commit is contained in:
Roberto Abdelkader Martínez Pérez
2019-11-19 13:00:13 +01:00
parent 4144e2be9e
commit 2313b2b933
+3 -2
View File
@@ -5,9 +5,10 @@ When a browser submits a form to a server all the values included in the
form are sent to the server in an HTTP call.
Kapow! handles the form decoding for you, the only thing you need to
know is which *field* or *fields* of the form you want.
know is the **name** of the *field* or *fields*.
In this example we respond back with the content of the form field ``myfield``:
In this example we respond back with the content of the form field
``myfield``:
.. code-block:: bash