I have this form.
<form>
<input type="text" name="nome">
</form>
Would you like to get the value of $_POST
in php automatically?
I need to get the data from a form where I do not know the field names or quantity.
<form method="post">
<input type="text" name="nome">
<input type="text" name="outro-campo">
<input type="text" name="outro-campo2">
</form>
Instead of doing
echo $_POST['nome'];
echo $_POST['outro-campo'];
echo $_POST['outro-campo2'];
I need something automatic but I do not know how.