Files
freeCodeCamp/mock-guide/english/php/forms/handling-form-input/index.md
Joe Erickson 0890dda962 Add content for PHP strings (#27489)
* Add content for PHP strings

* fix: resolved conflict
2019-02-28 16:37:12 -08:00

613 B

title
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 quick style guide will help ensure your pull request gets accepted.

More Information: