From f937d627c868032554ba940e6f391b3b2da85d34 Mon Sep 17 00:00:00 2001 From: Hovhannes Date: Fri, 12 Oct 2018 22:29:57 +0200 Subject: [PATCH] GET & POST --- .../guide/english/php/forms/handling-form-input/index.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/client/src/pages/guide/english/php/forms/handling-form-input/index.md b/client/src/pages/guide/english/php/forms/handling-form-input/index.md index 7a052e094f..eb4df62adb 100644 --- a/client/src/pages/guide/english/php/forms/handling-form-input/index.md +++ b/client/src/pages/guide/english/php/forms/handling-form-input/index.md @@ -2,8 +2,13 @@ title: Handling Form Input --- ## Handling Form Input +GET VS POST + +One can get form inputs with global variables $_POST and $_GET. +``` +$_POST["firstname"] or $_GET['lastname'] +``` -This is a stub. Help our community expand it. This quick style guide will help ensure your pull request gets accepted.