I have 2 Arrays :
Array
(
[0] => Array
(
[0] => Amit
[1] => [email protected]
)
[1] => Array
(
[0] => Rahul
[1] => [email protected]
)
)
and
Array
(
[0] => Array
(
[ProdutosidProduto] => 1
[Produtostipo] => mp
[Produtosmodelo] => F540 2 BAN.PNEU. 100 X 60
[Produtosbandejas] => 2
[Produtospeso] => 0
[Produtosprensagem] => 0
[ProdutosprecoUnitario] => 6500
[Produtoscomprimento] => 100
[Produtoslargura] => 60
[Produtoscabo] => 0
[Produtosligacao] => n
[Produtospotencia] => 0
[Produtosconsumo] => 0
[Produtoscorrente] => 0
[Produtosdisjuntor] => 0
[Produtosdescricao] =>
Valor promocional limitado frete grátis ,para SP ,RJ ,MG ,ES. Os demais será cobrado apenas de SP para sua cidade ,valor de 500,00 ,a ser pago na entrega .
MAQUINA TOTALMENTE INDUSTRIAL E 100% NACIONAL .PRODUÇÃO DE ATÉ MIL PÇS POR DIA EM HORÁRIO NORMAL DE TRABALHO ,SISTEMA DIGITAL AUTOMATIZADO DE ÚLTIMA GERAÇÃO , SISTEMA PNEUMÁTICO COMPACTO E UNIFORME RECEBENDO A MESMA PRESSÃO EM TODA ÁREA DE ESTAMPAGEM, EVITANDO ASSIM OS SOMBREAMENTOS E EFEITOS FANTASMA NA ESTAMPA , SISTEMA DE RESISTÊNCIA DE ALTA QUALIDADE A MELHOR DO MERCADO AÇO INOX 304 , DANDO UMA VIDA ÚTIL MUITO SUPERIOR AS DEMAIS DO MERCADO , E FÁCIL TROCAS DAS RESISTÊNCIAS NÃO SENDO NECESSÁRIO TÉCNICO NO LOCAL , COM APENAS 4 PARAFUSOS O CLIENTE MESMO FAZ A TROCA, AS DEMAIS A RESISTÊNCIA É FUNDIDA NA CHAPA DE ALUMÍNIO SENDO IMPOSSÍVEL A TROCA APENAS DAS RESISTÊNCIAS , TEMOS TODAS AS PÇS DA PRENSA EM VALORES BEM ACESSÍVEIS.
[Produtosestoque] => 7
[ProdutosfreteGratis] => s
[Produtosbloqueado] => n
)
[1] => Array
(
[ProdutosidProduto] => 2
[Produtostipo] => mp
[Produtosmodelo] => F540 2 BAN.PNEU.80X100 A VISTA BOLETO PAGSEGURO
[Produtosbandejas] => 2
[Produtospeso] => 190
[Produtosprensagem] => 300
[ProdutosprecoUnitario] => 7500
[Produtoscomprimento] => 70
[Produtoslargura] => 100
[Produtoscabo] => 6
[Produtosligacao] => b
[Produtospotencia] => 7500
[Produtosconsumo] => 3
[Produtoscorrente] => 35
[Produtosdisjuntor] => 40
[Produtosdescricao] => MAQUINA TOTALMENTE INDUSTRIAL E 100% NACIONAL .PRODUÇÃO DE ATÉ MIL PÇS POR DIA EM HORÁRIO NORMAL DE TRABALHO ,SISTEMA DIGITAL AUTOMATIZADO DE ÚLTIMA GERAÇÃO , SISTEMA PNEUMÁTICO COMPACTO E UNIFORME RECEBENDO A MESMA PRESSÃO EM TODA ÁREA DE ESTAMPAGEM, EVITANDO ASSIM OS SOMBREAMENTOS E EFEITOS FANTASMA NA ESTAMPA , SISTEMA DE RESISTÊNCIA DE ALTA QUALIDADE A MELHOR DO MERCADO AÇO INOX 304 , DANDO UMA VIDA ÚTIL MUITO SUPERIOR AS DEMAIS DO MERCADO , E FÁCIL TROCAS DAS RESISTÊNCIAS NÃO SENDO NECESSÁRIO TÉCNICO NO LOCAL , COM APENAS 4 PARAFUSOS O CLIENTE MESMO FAZ A TROCA, AS DEMAIS A RESISTÊNCIA É FUNDIDA NA CHAPA DE ALUMÍNIO SENDO IMPOSSÍVEL A TROCA APENAS DAS RESISTÊNCIAS , TEMOS TODAS AS PÇS DA PRENSA EM VALORES BEM ACESSÍVEIS.
www.topuhrens.de
[Produtosestoque] => 8
[ProdutosfreteGratis] => n
[Produtosbloqueado] => n
)
[2] => Array
(
[ProdutosidProduto] => 3
[Produtostipo] => mp
[Produtosmodelo] => (PROMOÇÃO )2 BAN.PNEU.80X100, VALOR PROMOCIONAL .
[Produtosbandejas] => 2
[Produtospeso] => 200
[Produtosprensagem] => 300
[ProdutosprecoUnitario] => 8990
[Produtoscomprimento] => 80
[Produtoslargura] => 100
[Produtoscabo] => 6
[Produtosligacao] => b
[Produtospotencia] => 7500
[Produtosconsumo] => 3
[Produtoscorrente] => 35
[Produtosdisjuntor] => 40
[Produtosdescricao] => MAQUINA TOTALMENTE INDUSTRIAL E 100% NACIONAL .PRODUÇÃO DE ATÉ MIL PÇS POR DIA EM HORÁRIO NORMAL DE TRABALHO ,SISTEMA DIGITAL AUTOMATIZADO DE ÚLTIMA GERAÇÃO , SISTEMA PNEUMÁTICO COMPACTO E UNIFORME RECEBENDO A MESMA PRESSÃO EM TODA ÁREA DE ESTAMPAGEM, EVITANDO ASSIM OS SOMBREAMENTOS E EFEITOS FANTASMA NA ESTAMPA , SISTEMA DE RESISTÊNCIA DE ALTA QUALIDADE replica watches for sale A MELHOR DO MERCADO AÇO INOX 304 , DANDO UMA VIDA ÚTIL MUITO SUPERIOR AS DEMAIS DO MERCADO , E FÁCIL TROCAS DAS RESISTÊNCIAS NÃO SENDO NECESSÁRIO TÉCNICO NO LOCAL , COM APENAS 4 PARAFUSOS O CLIENTE MESMO FAZ A TROCA, AS DEMAIS A RESISTÊNCIA É FUNDIDA NA CHAPA DE ALUMÍNIO SENDO IMPOSSÍVEL A TROCA APENAS DAS RESISTÊNCIAS , TEMOS TODAS AS PÇS DA PRENSA EM VALORES BEM ACESSÍVEIS.
CONSUMO : 3 KW/H
[Produtosestoque] => 97
[ProdutosfreteGratis] => n
[Produtosbloqueado] => n
)
I want to turn them into JSON but respecting their index
With the first Array I did:
var arr = <?php echo json_encode($myArr); ?>;
With the second I did:
var res = <?php echo json_encode($produtos); ?>;
Well, when I checked out the JSON that came out, I checked that
For the first Array we have:
document.write(arr[1][0]) => imprimiu Rahul;
For the second Array , we have to:
document.write(res[0]["ProdutosidProduto"]) => Imprimiu undefined;
But when I did:
document.write(res) => imprimiu [object Object],[object Object]
What am I doing wrong?
If the Arrays are almost identical, where is the error?
It will be a fact that one indexes words and numeric index >?