Posts by Tiago Ferreira • 56 points
3 posts
-
3
votes1
answer31
viewsA: Checkbox loaded from the bank
try something like that: //array o valor de todos inputs $todos_itens = array( '1' => 'Valor 1', '2' => 'Valor 2', '3' => 'Valor 3', '4' => 'Valor 4', '5' => 'Valor 5', '6' =>…
-
0
votes2
answers279
viewsA: Replace foreach php by each jquery
Try to use something like: $(document).ready(function(){ $.get( "http://meusite.com/", function(data) { var obj = JSON.parse(data); obj.forEach(function(o, index){ console.log(o); }); }); }); Try…
-
1
votes1
answer996
viewsQ: Error consuming webservice wsdl with PHP
I am the days with this problem, I need to consume a wsdl webservice with php. Follows my code $cliente = new SoapClient('http://ws.tntbrasil.com.br:81/tntws/CalculoFrete?wsdl'); $funcao =…