Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
To fazendo um formulário para dar entrada em produtos no estoque (espelho da NF) para isso estou usando um cód em javascript para clonar as linhas.
Até ai tudo bem, o problema e na hora de mandar cadastrar pois ele só cadastra a ultima linha dos produtos, será problema no meu isert, no formulário ou no java?
To quebrando a cabeça e não acho onde está o problema, me ajudem por favor....
partes do cód:
Insert:
mysql_query("INSERT INTO lc_detalhe (cat_id,qtd,valor_unid,valor_total,controle_id) values
('$cat_id','$qtd','$valor_unid','$valor_total',LAST_INSERT_ID())");
Javascript para duplicar as linhas:
<script type="text/javascript">
$(function () {
function removeCampo() {
$(".removerCampo").unbind("click");
$(".removerCampo").bind("click", function () {
if($("tr.linhas").length > 1){
$(this).parent().parent().remove();
}
});
}
$(".adicionarCampo").click(function () {
novoCampo = $("tr.linhas:first").clone();
novoCampo.find("input").val("");
novoCampo.find(".valor_unid").maskMoney({showSymbol:false, decimal:".", thousands:""});
novoCampo.insertAfter("tr.linhas:last");
removeCampo();
});
});
</script>
Parte do formulário que duplica:
<table border="0" cellpadding="2" cellspacing="4">
<tr>
<td class="bd_titulo">ID</td><td class="bd_titulo">Produto</td><td class="bd_titulo">Quantidade</td><td class="bd_titulo">Valor Unitario</td><td class="bd_titulo">Valor Total</td></tr>
<tr class="linhas">
<td><input type="text" name="id" style="text-align:center" disabled="true" /></td>
<td><select name="cat_id">
<?php
while ($row=mysql_fetch_array($qr)){
?>
<option value="<?php echo $row['id']?>"><?php echo $row['nome']?></option>
<?php }?></td>
<td>
<input type="text" name="qtd" class="qtd" required name="qtd"
style="text-align:center" />
</td>
<td>
<input name="valor_unid" type="text" required name="valor_unid"
maxlength="30"
onblur="Calc(this)"
class="valor_unid" />
</td>
<td>
<input type="text" name="valor_total"
class="vtotal" readonly="readonly"
style="text-align:center"/>
</td>
<td><a href="#" class="removerCampo" title="Remover linha"><img src="img/excluir.jpg" border="0" /></a></td>
</tr>
<tr><td colspan="4">
<a href="#" class="adicionarCampo" title="Adicionar item"><img src="img/+.jpg" border="0" /></a>
</td></tr>Seu "problema" está aqui
Insert:
mysql_query("INSERT INTO lc_detalhe (cat_id,qtd,valor_unid,valor_total,controle_id) values
('$cat_id','$qtd','$valor_unid','$valor_total',LAST_INSERT_ID())");
Desta forma você está realizando apenas o comando de inserção de 1 registro e por isso salva-se apenas o último item.
Como resolver?
você pode dar um *name=""* nos seus inputs com indicação de matriz/array. Por exemplo:
<input name="cat_id[]" value="$id">
<input name="qtd[]" value="$id">
<input name="valor_unid[]" value="$id">
<input name="valor_total[]" value="$id">
desta forma você conseguira colocar seu INSERT dentro de um loop de acordo com a quantidade de produtos que você está adicionando... Tenta modelar algo assim que vamos ajudando no processo!
Para isso você vai precisar aplicar foreach num dos inputs e nos demais aplicar loop indicando suas chaves/posicoes no array/matriz
Veja se com esse direcionamento você consegue solucionar ou "codar" algo e posta aquiopa...tentei seguir sua orientação mas sou bem iniciante.....
mudei e não deu certo, ainda não sei aplicar foreach.
de: input type="text" name="qtd"
para : input name="qtd[]"
Como não sei montar array ainda to na pesquisa pela NET e montei conforme abaixo, está correto?
Se estiver, como eu monto o insert?
var arrDetalhe = "";
arrDetalhe += "[";
$("#tblDetalhe tbody tr").each(function(){
arrDetalhe += "{";
arrDetalhe += "'cat_id':'" + $(this).find("td .cat_id").val() + "', ";
arrDetalhe += "'qtd':'" + $(this).find("td .qtd").val() + "', ";
arrDetalhe += "'valor_unid':'" + $(this).find("td .valor_unid").val() + "', ";
arrDetalhe += "'valor_total':'" + $(this).find("td .valor_total").val() + "', ";
arrDetalhe += "},";
});
arrDetalhe = sql.substring(0,sql.length - 1);
arrDetalhe += "]";
$("#sqlHidden").val(arrDetalhe);pesquise por:
foreach inputs php
uma boa base de teste:
http://stackoverflow.com/questions/5479999/foreach-value-from-post-from-form
Qaando postar código, não se esqueça de clicar em < > CODE
Guilherme, valeu pelo toque...pode deixar...
Olha to lendo lendo, montando, desmontando etc..kkkkk
e ainda não entendi e nem consegui montar array/foreach
você sabe onde posso achar um exemplo de insert com array/foreach mais completo para entender o funcionamento e adaptar para meu caso?
Vamos supor o seguinte cenário...
Você tem 05 inputs e precisa salvar o conteudo de todos em registros distintos no seu banco de dados.
Desta forma você teria a seguinte lista de inputs
<input name="valor[]" value="1">
<input name="valor[]" value="2">
<input name="valor[]" value="3">
<input name="valor[]" value="4">
<input name="valor[]" value="5">
Se você fizer um INSERT no banco de dados deste campo apos o POST você vai ter a inserção de apenas 1 registro e não os 5.
Como resolver isso? Aplicando o termo [] no name="" dos inputs para que eles sejam agrupados num array/matriz apos o POST (apos clicar em submit) do seu formulario.
Feito isso você terá os dados num array/matriz mas e ai? Como ler um a um?
Aplicando um loop de leitura de toda a matriz.
De que forma?
Atraves da função FOR() ou FOREACH() - Tanto uma como outra tem a mesma finalidade, porem recomendo utilizar o foreach para um entendimento mais facil e menos linhas de código.
Vamos a leitura!
Sabendo que os seus campos possuem o nome **valor **nós vamos "transforma-los" em itens unicos e distintos com o foreach, ou seja, como o proprio nome diz - tradução livre: por cada - nós vamos executar uma ação para cada indice dessa matriz. Neste caso, para cada indice, vamos criar um registro no banco de dados, ficando assim:
<?php
//Crio a variavel $valor para cada indice do POST
foreach($_POST['valor'] as $valor){
//Para cada indice do meu POST eu quero que seja criado um registro na minha base
$query = "INSERT INTO coluna ('valor') VALUES ('$valor')";
$sql = mysqli_query($conexaoBD, $query);
//Apos a inserção verifico se deu certo ou errado.
if($sql === TRUE){
echo "Registros adicionados";
}else{
echo "deu pau".mysqli_error($conexaoBD);
}
?>
Para complementar o seu estudo indico estudar sobre
Array - php.net/manual/pt_BR/function.array.php
For() - [http://php.net/manual/pt_BR/control-structures.for.php](http://php.net/manual/pt_BR/control-structures.for.php)
Foreach - [http://php.net/manual/pt_BR/control-structures.foreach.php](http://php.net/manual/pt_BR/control-structures.foreach.php)
***OBS: se algum momento falei besteira por falta de didática, os mais experientes poderão nos corrigir :)***Guilherme valeu pelas dicas....acho que to chegando em algum lugar..kkkk
Agora ele ta gravando até demais no BD. quando ele tem apenas uma linha ele grava certinho mas quando tem mais de uma linha ele triplica as linhas no BD e não respeita o LAST_INSERT_ID()
Olha como montei o insert:
foreach($_POST["cat_id"] as $cat_id)
foreach($_POST["qtd"] as $qtd)
foreach($_POST["valor_unid"] as $valor_unid)
foreach($_POST["valor_total"] as $valor_total)
mysql_query("INSERT INTO lc_detalhe (cat_id,qtd,valor_unid,valor_total,controle_id) values
('$cat_id','$qtd','$valor_unid','$valor_total',LAST_INSERT_ID())");
olha como está os campos do formulário:
<td><select name="cat_id[]">
<?php
while ($row=mysql_fetch_array($qr)){
?>
<option value="<?php echo $row['id']?>"><?php echo $row['nome']?></option>
<?php }?></td>
<td>
<input type="text" name="qtd[]" class="qtd" required name="qtd"
style="text-align:center" />
</td>
<td>
<input name="valor_unid[]" type="text" required name="valor_unid"
maxlength="30"
onblur="Calc(this)"
class="valor_unid" />
</td>
<td>
<input type="text" name="valor_total[]"
class="vtotal" readonly="readonly"
style="text-align:center"/>
</td>
<td><a href="#" class="removerCampo" title="Remover linha"><img src="img/excluir.jpg" border="0" /></a></td>
</tr>
<tr><td colspan="4">
<a href="#" class="adicionarCampo" title="Adicionar item"><img src="img/+.jpg" border="0" /></a>
</td></tr>
<tr>
<p><input type="submit" value="Cadastrar" /></p>
Olha como ele gravou no BD: ele perdeu o controle_id a partir do 3º registro que vem do LAST_INSERT_ID(), os valores não batem com o que foi digitado e inseriu varias vezes o mesmo registro
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/pmahomme/img/s_fulltext.png&key=c940c501b26af731f8d61e6442554cd5ac963dac9980b1d0a7da2316d64c055b" title="Textos completos" />](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=&full_text_button=1&display_text=F&token=fdf9a7c37bf533272cc5b08a8f692e24)
[id](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60%0AORDER+BY+%60lc_detalhe%60.%60id%60+ASC&session_max_rows=30&token=fdf9a7c37bf533272cc5b08a8f692e24)
[controle_id](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60%0AORDER+BY+%60lc_detalhe%60.%60controle_id%60+ASC&session_max_rows=30&token=fdf9a7c37bf533272cc5b08a8f692e24)
[cat_id](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60%0AORDER+BY+%60lc_detalhe%60.%60cat_id%60+ASC&session_max_rows=30&token=fdf9a7c37bf533272cc5b08a8f692e24)
[qtd](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60%0AORDER+BY+%60lc_detalhe%60.%60qtd%60+ASC&session_max_rows=30&token=fdf9a7c37bf533272cc5b08a8f692e24)
[valor_unid](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60%0AORDER+BY+%60lc_detalhe%60.%60valor_unid%60+ASC&session_max_rows=30&token=fdf9a7c37bf533272cc5b08a8f692e24)
[valor_total](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60%0AORDER+BY+%60lc_detalhe%60.%60valor_total%60+ASC&session_max_rows=30&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+1&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+1&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+1&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
1
1
533
1630
1.00
1630.00
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+2&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+2&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+2&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
2
1
533
1630
1.00
16.31
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+3&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+3&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+3&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
3
2
533
1630
0.01
1630.00
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+4&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+4&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+4&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
4
3
533
1630
0.01
16.31
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+5&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+5&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+5&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
5
4
533
1631
1.00
1630.00
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+6&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+6&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+6&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
6
5
533
1631
1.00
16.31
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+7&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+7&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+7&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
7
6
533
1631
0.01
1630.00
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+8&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+8&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+8&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
8
7
533
1631
0.01
16.31
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+9&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+9&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+9&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
9
8
534
1630
1.00
1630.00
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+10&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+10&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+10&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
10
9
534
1630
1.00
16.31
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+11&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+11&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+11&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
11
10
534
1630
0.01
1630.00
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+12&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+12&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+12&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
12
11
534
1630
0.01
16.31
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+13&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+13&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+13&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
13
12
534
1631
1.00
1630.00
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+14&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+14&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+14&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
14
13
534
1631
1.00
16.31
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+15&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+15&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+15&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
15
14
534
1631
0.01
1630.00
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Edita" /> Edita](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+16&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=update&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Copiar" /> Copiar](https://mysql303.opentransfer.com/phpMyAdmin/tbl_change.php?db=rcamuss_estoquewtbr&table=lc_detalhe&where_clause=%60lc_detalhe%60.%60id%60+%3D+16&clause_is_unique=1&sql_query=SELECT+%2A+FROM+%60lc_detalhe%60&goto=sql.php&default_action=insert&token=fdf9a7c37bf533272cc5b08a8f692e24)
[/applications/core/interface/imageproxy/imageproxy.php?img=https://mysql303.opentransfer.com/phpMyAdmin/themes/dot.gif&key=b7e97e4bf351335ef9c3c629a675c5714b310c78cd166305bb3a1ac7a13b0af8" title="Apagar" /> Apagar](https://mysql303.opentransfer.com/phpMyAdmin/sql.php?db=rcamuss_estoquewtbr&table=lc_detalhe&sql_query=DELETE+FROM+%60rcamuss_estoquewtbr%60.%60lc_detalhe%60+WHERE+%60lc_detalhe%60.%60id%60+%3D+16&message_to_show=Registo+eliminado&goto=sql.php%3Fdb%3Drcamuss_estoquewtbr%26table%3Dlc_detalhe%26sql_query%3DSELECT%2B%252A%2BFROM%2B%2560lc_detalhe%2560%26message_to_show%3DRegisto%2Beliminado%26goto%3Dtbl_sql.php%26token%3Dfdf9a7c37bf533272cc5b08a8f692e24&token=fdf9a7c37bf533272cc5b08a8f692e24)
16
15
534
1631
0.01
16.31
dá pra gravar vários registros passando eles separados por vírgula entre parentese