From 659695972438bae014eae2d5319aa5ab226fc6ab Mon Sep 17 00:00:00 2001 From: Javier Velilla Date: Fri, 10 Feb 2017 18:32:48 -0300 Subject: [PATCH] Cosmetic --- doc/workbook/handling_request/form.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/workbook/handling_request/form.md b/doc/workbook/handling_request/form.md index f5f7f339..1d15e5b8 100644 --- a/doc/workbook/handling_request/form.md +++ b/doc/workbook/handling_request/form.md @@ -17,17 +17,17 @@ Nav: [Workbook](../workbook.md) :: [Basic Concepts](../basics/basics.md) :: [Han - [Examples](#examples) -An HTML Form can handle GET and POST requests. -When we use a form with method GET, the data is attached at the end of the url for example: +An HTML Form can handle `GET` and `POST` requests. +When we use a form with method `GET`, the data is attached at the end of the url for example: >http://wwww.example.com?key1=value1&...keyn=valuen -If we use the method POST, the data is sent to the server in a different line. +If we use the method `POST`, the data is sent to the server in a different line. Extracting form data from the server side is one of the most tedious parts. If you do it by hand, you will need to parse the input, you'll have to URL-decode the value. -Here we will show you how to read input submitted by a user using a Form (GET and POST). +Here we will show you how to read input submitted by a user using a Form (`GET` and `POST`). * How to handle missing values: * client side validattion, server side validations, set default if it's a valid option. * How to populate Eiffel objects from the request data.