keyboard_arrow_down

Latest posts

Volcar todas las claves y valores de POST y GET (PHP)

Aquí está el código PHP para volcar todas las claves y valores de $_POST y $_GET para depurar en una página:

foreach ($_POST as $key => $value) {
    echo "Key: $key; Value: $value<br>";
}

foreach ($_GET as $key => $value) {
    echo "Key: $key; Value: $value<br>";
}

Leave a comment