How to handle forms in php?

Handling form data is a common task in PHP. Data can be collected from forms using the global arrays `$_GET` or `$_POST`.

Example:

  // HTML Form:
  // 
// // //
Solution:

  $name = $_POST['name'];
  echo 'Hello, ' . $name . '!';
  

Beginner's Guide to PHP