fork download
  1. <?php
  2.  
  3. $_POST = [
  4. "modulo" => "modulo",
  5. "categoria" => 6
  6. ];
  7.  
  8. foreach ($_POST as $key => $value) {
  9. echo $key, PHP_EOL;
  10. }
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
modulo
categoria