fork(1) download
  1. <?php
  2. $beneficiarios = array
  3. (
  4.  
  5.  
  6.  
  7. "codigo_membro" => "\$cod",
  8. "nome" => "\$_POST['nome1']",
  9. "n_identificacao" => "\$_POST['n_identificacao1']",
  10. "parentesco" => "\$_POST['parentesco1']",
  11. "telefone" => "\$_POST['telefone1']",
  12. "email" => "\$_POST['email1']"
  13. ),
  14. "codigo_membro" => "\$cod",
  15. "nome" => "\$_POST['nome2']",
  16. "n_identificacao" => "\$_POST['n_identificacao2']",
  17. "telefone" => "\$_POST['telefone2']",
  18. "email" => "\$_POST['email2']"
  19. )
  20.  
  21.  
  22. );
  23.  
  24. foreach ($beneficiarios as $beneficiario){
  25. echo $beneficiario["nome"]."<br />";
  26. }
  27.  
  28. ?>
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
$_POST['nome1']<br />$_POST['nome2']<br />