Jump to content
Fórum Script Brasil
  • 0

Problema finalizar carrinho


biza

Question

viva pessoal estou na etapa final de meu carrinho de compras em que o cliente terá de pagar os dados via multibanco ,

O meu problema é que eu trago um array de $_sessions que gostaria de lotar em cada um dos campos que se pode ver na seguinte imagem , ou seja , fazer crescer os campos estilizados consoante o numero de produtos algum me pode dar uma ajuda?

ip.png

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

bom... eu não sei bem como é seu array session, mas digamos que você coloque cada descritivo em $_SESSION['descritivo']

faça o seguinte:

<?php

echo "<table>";
foreach ($_SESSION['descritivo'] as $i => $val) {
    echo "
    <tr>
        <td>
            {$i}
        </td>
        <td>
            <input name='{$i}' type='text' value='{$val}' />
        </td>
    </tr>
";
}
echo "</table>";
?>

Link to comment
Share on other sites

  • 0

caro robson, não entendo a sua sintaxe se me puder explicar melhor agradeço. Fiz um print_r($_SESSION) e eis o que me é devolvido

[cliente] => Array ( [id] => 1 [email] => armandoferr@gmail.com [nome] => António [sobrenome] => Ferreira ) [final] => Array ( [peso] => 1 [taxa] => 13.90 [quantidade] => 3 [total] => 107.29 [subtotal] => 93.39 ) [act_v] => Array ( [0] => Array ( [item_a] => 9 [quantity_a] => 1 ) ) [pro_d] => Array ( [0] => Array ( [item_p] => 25 [quantity_p] => 1 ) [1] => Array ( [item_p] => 11 [quantity_p] => 1 ) ) )

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...