Get All Post Values In Php

[Solved] Get All Post Values In Php | Php - Code Explorer | yomemimo.com
Question : get all post values in php

Answered by : alexander-gudmundsson

//Loop all POST values.
foreach ($_POST as $key => $value) { echo "Field ".htmlspecialchars($key)." is ".htmlspecialchars($value)."<br>";
}

Source : | Last Update : Sat, 15 Aug 20

Answers related to get all post values in php

Code Explorer Popular Question For Php