我将php.ini改为 max_input_size 5000
post_max_size = 50M
但仍无法正常工作
我的表格每行有33个输入,有42行 所以给我1386输入,当我看到我的输入数组没有所有的数据 我只得到了那35个中的35行。
这是主表:
<th>ITEM</th>
<th>IDENTIFICAÇÃO DA PEÇA</th>
<th>Nº DA JUNTA</th>
<th>POSIÇÃO</th>
<th>DIÂMETRO Ø</th>
<th>Espessura Menor</th>
<th>Espessura Maior</th>
<th>REFORÇO</th>
<th>METAL BASE</th>
<th>METAL ADIÇÃO</th>
<th>SINETE RAIZ</th>
<th>SINETE ACABAMENTO</th>
<th>NORMA</th>
<th>NIVEL INSPEÇÃO</th>
<th>PROCEDIMENTO</th>
<th>DFF</th>
<th>DFO</th>
<th>TÉCNICA</th>
<th>TEMPO DE FONTE EXPOSTA</th>
<th>IQI</th>
<th>CHANFRO</th>
<th>QUANTIDADE FILME</th>
<th>FILME CLASSE</th>
<th>FILME DIMENSÃO</th>
<th>OBSERVAÇÃO</th>
<th>PROCESSO</th>
<th>EXCLUIR ITEM?</th>
我的输入文字/隐藏是这样的:
<td><input class="input_informacao" type="text" name="progs[{{ $programacao->cod }}][item]" id="item" size="1" value="{{ $programacao->item }}"></td>
我的选择是laravel blade select:
<td>
{{ Form::select("progs[".$programacao->cod."][tecnica]", array(
'' => 'Selecione',
'PS-VS' => 'PS-VS',
'PD-VS' => 'PD-VS',
'PD-VD' => 'PD-VD',
'PS-VS/P' => 'PS-VS/P'),
$
programacao->tecnica , array('class' => 'input_informacao', 'id' => 'tecnica')) }}
</td>
我42输入,id 14到55;当我死转储输入var不发布所有数据。 输入的一个例子,
47 =>
array (size=28)
'cod' => string '47' (length=2)
'item' => string '12' (length=2)
'identificacao' => string 'BC. INFERIOR PAINEL 17' (length=22)
'junta' => string '10' (length=2)
'posicao' => string '-' (length=1)
'diametro' => string '33,7' (length=4)
'espmenor' => string '3,81' (length=4)
'espmaior' => string '3,81' (length=4)
'reforco' => string '-' (length=1)
'metalbase' => string '' (length=0)
'metaladicao' => string '' (length=0)
'sineteraiz' => string '' (length=0)
'sineteacabamento' => string '' (length=0)
'norma' => string '' (length=0)
'nivel' => string '' (length=0)
'procedimento' => string '' (length=0)
'dff' => string '' (length=0)
'dfo' => string '' (length=0)
'tecnica' => string 'PD-VD' (length=5)
'tempoexposicao' => string '00:00:00' (length=8)
'iqi' => string '10ISO16-13' (length=10)
'chanfro' => string '' (length=0)
'qtdfilmes' => string '3' (length=1)
'filmeclasse' => string 'I' (length=1)
'filmedimensao' => string 'A' (length=1)
'observacao' => string '' (length=0)
'processo' => string '' (length=0)
'item_excluido' => string 'N' (length=1)
49 =>
array (size=7)
'cod' => string '49' (length=2)
'item' => string '12' (length=2)
'identificacao' => string 'BC. INFERIOR PAINEL 17' (length=22)
'junta' => string '10' (length=2)
'posicao' => string '-' (length=1)
'diametro' => string '33,7' (length=4)
'espmenor' => string '3,81' (length=4)
有人知道我怎么解决这个问题?
ps:我也使用laravel 4.1 谢谢!!