Jump to content
Fórum Script Brasil
  • 0

Duvida com PHP


2525

Question

O código abaixo representa um sistema de cheques por exemplo seriam 4 chques ( 4x de um valor total) porem preciso automaticamente recuperar os determinados campos "checks[0][numero]" ao "checks[4][numero]" (ou pode ser valores maiores por exemplo 60x) esses campos são criados por java script preciso recuperar automaticamente esses valores pro php e inserir no SQL, alguém poderia me ajudar?

<table width="100%" border="0" cellpadding="0" cellspacing="0">
  <tbody>
    <tr></tr>
    <tr align="center">
      <td>N° cheque</td>
      <td>Banco</td>
      <td>Ag.</td>
      <td>Valor</td>
      <td>Vencimento</td>
    </tr>
    <tr>
      <td><input id="checkEntrada_numero" name="checkEntrada[numero]" type="text" size="15" value="" />
        (entrada)</td>
      <td><input id="checkEntrada_banco" name="checkEntrada[banco]" type="text" size="15" value="" /></td>
      <td><input id="checkEntrada_agencia" name="checkEntrada[agencia]" type="text" size="15" value="" /></td>
      <td><input id="checkEntrada_valor" name="checkEntrada[valor]" type="text" alt="decimal" size="15" value="200,00" /></td>
      <td><input id="checkEntrada_vencimento" name="checkEntrada[vencimento]" type="text" alt="date" size="15" value="" /></td>
    </tr>
    <tr>
      <td><input id="checks_0_numero" name="checks[0][numero]" type="text" size="15" value="" />
        <a href="#" onclick="AutofillChecks(0); return false;"><img src="file:///C|/Program Files/VertrigoServ/www/intranet/novo/refresh.gif" border="0" /></a></td>
      <td><input id="checks_0_banco" name="checks[0][banco]" type="text" size="15" value="" /></td>
      <td><input id="checks_0_agencia" name="checks[0][agencia]" type="text" size="15" value="" /></td>
      <td><input id="checks_0_valor" name="checks[0][valor]" type="text" alt="decimal" size="15" value="112,00" /></td>
      <td><input id="checks_0_vencimento" name="checks[0][vencimento]" type="text" alt="date" size="15" value="11/08/2011" /></td>
    </tr>
    <tr>
      <td><input id="checks_1_numero" name="checks[1][numero]" type="text" size="15" value="" />
        <a href="#" onclick="AutofillChecks(1); return false;"><img src="file:///C|/Program Files/VertrigoServ/www/intranet/novo/refresh.gif" border="0" /></a></td>
      <td><input id="checks_1_banco" name="checks[1][banco]" type="text" size="15" value="" /></td>
      <td><input id="checks_1_agencia" name="checks[1][agencia]" type="text" size="15" value="" /></td>
      <td><input id="checks_1_valor" name="checks[1][valor]" type="text" alt="decimal" size="15" value="112,00" /></td>
      <td><input id="checks_1_vencimento" name="checks[1][vencimento]" type="text" alt="date" size="15" value="" /></td>
    </tr>
    <tr>
      <td><input id="checks_2_numero" name="checks[2][numero]" type="text" size="15" value="" />
        <a href="#" onclick="AutofillChecks(2); return false;"><img src="file:///C|/Program Files/VertrigoServ/www/intranet/novo/refresh.gif" border="0" /></a></td>
      <td><input id="checks_2_banco" name="checks[2][banco]" type="text" size="15" value="" /></td>
      <td><input id="checks_2_agencia" name="checks[2][agencia]" type="text" size="15" value="" /></td>
      <td><input id="checks_2_valor" name="checks[2][valor]" type="text" alt="decimal" size="15" value="112,00" /></td>
      <td><input id="checks_2_vencimento" name="checks[2][vencimento]" type="text" alt="date" size="15" value="" /></td>
    </tr>
    <tr>
      <td><input id="checks_3_numero" name="checks[3][numero]" type="text" size="15" value="" />
        <a href="#" onclick="AutofillChecks(3); return false;"><img src="file:///C|/Program Files/VertrigoServ/www/intranet/novo/refresh.gif" border="0" /></a></td>
      <td><input id="checks_3_banco" name="checks[3][banco]" type="text" size="15" value="" /></td>
      <td><input id="checks_3_agencia" name="checks[3][agencia]" type="text" size="15" value="" /></td>
      <td><input id="checks_3_valor" name="checks[3][valor]" type="text" alt="decimal" size="15" value="112,00" /></td>
      <td><input id="checks_3_vencimento" name="checks[3][vencimento]" type="text" alt="date" size="15" value="" /></td>
    </tr>
    <tr>
      <td><input id="checks_4_numero" name="checks[4][numero]" type="text" size="15" value="" />
        <a href="#" onclick="AutofillChecks(4); return false;"><img src="file:///C|/Program Files/VertrigoServ/www/intranet/novo/refresh.gif" border="0" /></a></td>
      <td><input id="checks_4_banco" name="checks[4][banco]" type="text" size="15" value="" /></td>
      <td><input id="checks_4_agencia" name="checks[4][agencia]" type="text" size="15" value="" /></td>
      <td><input id="checks_4_valor" name="checks[4][valor]" type="text" alt="decimal" size="15" value="112,00" /></td>
    </tr>
  </tbody>
</table>

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Reformulando a perunta... vi aqui foi certinho muito obrigado, agora preciso que por exemplo seja inseido ao banco de dados cata input em seu correto lugar sou muito leigo na aplicação de java script com PHP, por exemplo:

0Array ( [numero] => 2 [banco] => 1 [agencia] => 1 [valor] => 142,00 [vencimento] => 11/08/2011 )

1Array ( [numero] => 3 [banco] => 1 [agencia] => 1 [valor] => 142,00 [vencimento] => 11/09/2011 )

2Array ( [numero] => 4 [banco] => 1 [agencia] => 1 [valor] => 142,00 [vencimento] => 11/10/2011 )

3Array ( [numero] => 5 [banco] => 1 [agencia] => 1 [valor] => 142,00 [vencimento] => 11/11/2011 )

4Array ( [numero] => 6 [banco] => 1 [agencia] => 1 [valor] => 142,00 [vencimento] => 11/12/2011 )

Qeuro pegar os campos numero = coluna numero_chque; banco = coluna banco e etc...

Se possivel me ajudar agradeço des de já!

Edited by 2525
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...