If you really want to print them, you can do something like:
print_r($_POST);
Alternatively, you can interact with them individually, doing something like:
foreach ($_POST as $key => $value) { //do something echo $key . ' has the value of ' . $value; }
but whatever you do. Please filter the input. SQL Injection gives everyone sleepless nights.
CaseySoftware Jun 17 2018-10-10T00: 00-06
source share