Ir para conteúdo
Fórum Script Brasil

jow_W

Membros
  • Total de itens

    7
  • Registro em

  • Última visita

Tudo que jow_W postou

  1. Galera seguinte estou com problema em gerar um array no servidor da minha empresa ele gera array faltando segue exemplo segue codigo para gerar array dos inputs <?php print_r($_POST); ?> <form name="form" id="form" method="post"> <?php for ($x=0; $x<=48; $x++){ ?> <input type="hidden" name="teste1[]"/> <input type="hidden" name="teste2[]" /> <input type="hidden" name="teste3[]" /> <input type="hidden" name="teste4[]" /> <input type="hidden" name="teste5[]" /> <?php } ?> <input type="submit" name="teste"/> </form> tenho array com 48 valores. escreve para mim assim isto no servidor da empresa só gera 39 aqui está erro. Array ( [teste1] => Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => [12] => [13] => [14] => [15] => [16] => [17] => [18] => [19] => [20] => [21] => [22] => [23] => [24] => [25] => [26] => [27] => [28] => [29] => [30] => [31] => [32] => [33] => [34] => [35] => [36] => [37] => [38] => [39] => ) [teste2] => Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => [12] => [13] => [14] => [15] => [16] => [17] => [18] => [19] => [20] => [21] => [22] => [23] => [24] => [25] => [26] => [27] => [28] => [29] => [30] => [31] => [32] => [33] => [34] => [35] => [36] => [37] => [38] => [39] => ) [teste3] => Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => [12] => [13] => [14] => [15] => [16] => [17] => [18] => [19] => [20] => [21] => [22] => [23] => [24] => [25] => [26] => [27] => [28] => [29] => [30] => [31] => [32] => [33] => [34] => [35] => [36] => [37] => [38] => [39] => ) [teste4] => Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => [12] => [13] => [14] => [15] => [16] => [17] => [18] => [19] => [20] => [21] => [22] => [23] => [24] => [25] => [26] => [27] => [28] => [29] => [30] => [31] => [32] => [33] => [34] => [35] => [36] => [37] => [38] => [39] => ) [teste5] => Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => [12] => [13] => [14] => [15] => [16] => [17] => [18] => [19] => [20] => [21] => [22] => [23] => [24] => [25] => [26] => [27] => [28] => [29] => [30] => [31] => [32] => [33] => [34] => [35] => [36] => [37] => [38] => [39] => ) ) agora no meu servidor ele faz certo gera os 48 Array ( [teste1] => Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => [12] => [13] => [14] => [15] => [16] => [17] => [18] => [19] => [20] => [21] => [22] => [23] => [24] => [25] => [26] => [27] => [28] => [29] => [30] => [31] => [32] => [33] => [34] => [35] => [36] => [37] => [38] => [39] => [40] => [41] => [42] => [43] => [44] => [45] => [46] => [47] => [48] => ) [teste2] => Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => [12] => [13] => [14] => [15] => [16] => [17] => [18] => [19] => [20] => [21] => [22] => [23] => [24] => [25] => [26] => [27] => [28] => [29] => [30] => [31] => [32] => [33] => [34] => [35] => [36] => [37] => [38] => [39] => [40] => [41] => [42] => [43] => [44] => [45] => [46] => [47] => [48] => ) [teste3] => Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => [12] => [13] => [14] => [15] => [16] => [17] => [18] => [19] => [20] => [21] => [22] => [23] => [24] => [25] => [26] => [27] => [28] => [29] => [30] => [31] => [32] => [33] => [34] => [35] => [36] => [37] => [38] => [39] => [40] => [41] => [42] => [43] => [44] => [45] => [46] => [47] => [48] => ) [teste4] => Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => [12] => [13] => [14] => [15] => [16] => [17] => [18] => [19] => [20] => [21] => [22] => [23] => [24] => [25] => [26] => [27] => [28] => [29] => [30] => [31] => [32] => [33] => [34] => [35] => [36] => [37] => [38] => [39] => [40] => [41] => [42] => [43] => [44] => [45] => [46] => [47] => [48] => ) [teste5] => Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => [12] => [13] => [14] => [15] => [16] => [17] => [18] => [19] => [20] => [21] => [22] => [23] => [24] => [25] => [26] => [27] => [28] => [29] => [30] => [31] => [32] => [33] => [34] => [35] => [36] => [37] => [38] => [39] => [40] => [41] => [42] => [43] => [44] => [45] => [46] => [47] => [48] => ) [teste] => Enviar ) alguém PODERIA ME AJUDAR PORQUE NO MEU SERVIDOR ELE GERA NORMAL OS 48 AGORA NO SERVIDOR DA EMPRESA GERA CORTANDO ATÉ 39. ATT
  2. jow_W

    Ajuda com array

    Galera estou criando uma paginação da minha busca de imovel quando debug dados da este erro array como posso resolver.. erro: maximum depth reached 'ImovelFoto' => array( (int) 0 => array( [maximum depth reached] ), (int) 1 => array( [maximum depth reached] ) )
  3. Venho aqui pedir auxilio aos grandes do php.. seguinte estou precisando de fazer calendario de alugue igual a este http://www.aluguetemporada.com.br/scripts/...Imovel=48658435 Seguinte este calendario ele marca de "cor laranja" a data inicial e data final que usuario reservou para aluguar imovel. Como posso fazer este calendario de aluguel de imovel. Grato.
  4. jow_W

    Symfony ajuda

    Galera seguinte como configuro symfony na minha hospedagem já tentei de tudo e nada de funcionar no meu pc ele funciona mais quando jogo na hospedagem não funcioana alguém sabe como configuro pra funcionar na web meu servidor de hospedagem é kinghost grato
  5. jow_W

    Ajuda Loja Virtual

    galera desculpa se aqui não for bom lugar pra mim perguntar sobre esta loja.. seguinte alguém sabe qual sistema em asp esta loja usa http://www.kimoleza.com/ estou atras deste sistema vlw
  6. jow_W

    Ajuda Loja Virtual

    você já usou Magento
  7. jow_W

    Ajuda Loja Virtual

    beleza galera, seguinte qual melho sistema de loja virtual em PHP alguém poderia me indicar algum grato estou precisando urgente vlw
×
×
  • Criar Novo...