Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.35 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function adicionarUsuario()
  5. {
  6.     var local           = document.getElementById('usuario');
  7.     var tblBody         = local.tBodies[0];
  8.     var newRow          = tblBody.insertRow(-1);
  9.     var indice          = newRow.rowIndex;
  10.  
  11.     var newCell0        = newRow.insertCell(0);
  12.     newCell0.innerHTML  = '<td>Nome:&nbsp;<input type="text" name="nome[' + indice + ']" size="20" maxlenght="30" /></td>';
  13.  
  14.     var newCell2        = newRow.insertCell(1);
  15.     newCell2.innerHTML  = '<td>Externo:&nbsp;<input type="checkbox" name="externo[' + indice + ']" /></td>';
  16. }
  17. </script>
  18. </head>
  19.  
  20. <body>
  21.  
  22. <form method="post" action="?acao=salva">
  23.  
  24.     <table id="usuario">
  25.         <tbody>
  26.             <tr>
  27.                 <td>Nome:&nbsp;<input type='text' name='nome[0]' size='20' maxlenght='30'></td>
  28.                 <td>Externo:&nbsp;<input type='checkbox' name='externo[0]'></td>
  29.             </tr>
  30.         </tbody>
  31.     </table>
  32.  
  33.     <p><input type="button" value="+1 Usuário" onclick="adicionarUsuario();" /></p>
  34.     <p><input type="submit" value="Enviar" /></p>
  35. </form>
  36.  
  37. <?php
  38. $acao       = $_GET['acao'];
  39.  
  40. if ($acao == 'salva')
  41. {
  42.     $nome       = $_POST['nome'];       // Recebemos os nomes
  43.     $externo    = $_POST['externo'];    // E os que foram marcados
  44.  
  45.     echo '<pre>';
  46.         print_r( $nome );       // Podemos visualizar como ficou nosso array de nomes
  47.         print_r( $externo );    // E aqui como ficou nosso array de marcados
  48.     echo '</pre>';
  49. }
  50. ?>
  51.  
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement