Record / Change input of same IDs

1

Good afternoon guys.

I have a question about recording several inputs with the same id in Mysql, I have already looked for several pages and I have not yet got a solution how to do it. I have a client registry, which is currently in a single table, and I am having each part of the registry in a table. And in the section that I am, it works like this I have the code

       <div class="tab-content">
          <div class="tab-pane active" id="tab_1">
            <div class="box box-solid box-info">

            <div class="box-header">
          <h3 class="box-title">CAIXA 1</h3>
        </div>

       <div class="col-xs-4"><label>Versão</label>
          <input type="text" class="form-control" name="versao[]" id="vpos" data-inputmask="'mask': ['99.99.99', '999999']" data-mask>
          </div>
          <div class="col-xs-4"><label>Layout</label>
          <input type="text" class="form-control" name="vpos[]" id="vpos" data-inputmask="'mask': ['99.99', '9999']" data-mask>
        </div>
        <div class="col-xs-4"><label>Numero Série:</label>
          <input type="text" class="form-control" name="nserie[]" id="nserie" placeholder="Numero de Série" data-inputmask="'mask': ['999999999-99', '99999999999']" data-mask >
        </div>
        <div class="col-xs-4"><label>Código Ativação</label>
          <input type="text" class="form-control" name="codativ[]"  id="codativ" >
        </div>
        <div class="col-xs-4"><label>Código Segurança</label>
          <input type="text" class="form-control" name="codseg[]" id="codseg">
        </div>

I have 5 tabs and all inputs have same name, but the tabs have their ids. And in that case, what would be the correct way for me to use it, and then return the data in the same tabs. A clearing for me to follow the path.

    
asked by anonymous 12.03.2017 / 20:52

0 answers