Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript need help making a script Re: need help making a script

#68508
skullcrusher
Member

Ok, thank you. One more thing: whats the code to a "remove" icon?

Edited: 2º question.. i want to send the data by email.

Code:
foreach( $item_quantity as $id => $quantity ) :
echo ‘

Nome do producto
Remover




‘;
endforeach;

Code:
$nomeprod = $_POST[“Nomeprod”];
$comprimento = $_POST[“Comprimento”];
$largura = $_POST[“Largura”];
$altura = $_POST[“Altura”];
$consumo = $_POST[“Consumo”];
Code:
Produto: $nomeprod
Comprimento: $comprimento
Largura: $largura
Altura: $altura
Consumo: $consumo

Basiclly is that. But i want this for every products in the cart.. how can i change to dynnamic variables?