0

I'm learning PHP and I came across the Superglobal variable $_REQUEST so I want to know what is the difference between $_POST and $_REQUEST ?

1 Answers1

2

$_REQUEST includes all variables from both $_POST and $_GET.

Jim Wright
  • 5,905
  • 1
  • 15
  • 34