diff --git a/guide/english/php/forms/index.md b/guide/english/php/forms/index.md index 8bd6eb76e2..65bff6a306 100644 --- a/guide/english/php/forms/index.md +++ b/guide/english/php/forms/index.md @@ -5,5 +5,20 @@ title: Forms Forms are a way for users to enter data or select data from the webpage. Forms can store data as well as allow the information to be retrieved for later use. +To make a form to work in languages like PHP you need some basic attributes in html. In most cases PHP uses 'post' and 'get' super global variables to get the data from form. + +#### Example + +```html + + +
+
+
+
+ + +``` + +The 'method' attribute here tell the form the way to send the form data. Then the 'action' attribute tell where to send form data to proccess. Now the 'name' attribute is very important and it should be unique because in php the value of the name work as the identity of that input field. #### More Information: -