'Submit Data Array With JqueryAutoCalc

Submit to Database Success But Value Of Debit And Kredit are 0 and 1

<table>
<tr>
   <td>
       <input class="form-control" name="debit[]" type="text" placeholder="Debit" autocomplete="off" required />
   </td>
   <td>
       <input class="form-control" name="Kredit[]" type="text" placeholder="Kredit" autocomplete="off" required />
   </td>
</tr>

<tr>
   <th>Total</th>
   <th colspan="2">
       <input class="form-control" name="total" type="text"  jAutoCalc="{debit[]} + {kredit[]}" />
   </th>
   </table>

This is the error i receive

Parsing error:unrecognied value (Error:valueNotParsed):<*>{debit[]}+{kredit[]}



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source