Carrinho de Compras

1. Carrinho de Compras

clayton campos rosa
x-gyba

(usa Sabayon)

Enviado em 16/01/2016 - 16:20h

Tenho este carrinho de compras que ao usar number_format ele zera o valor do preço , mas se eu usar:
preço = $linha['preco']; ele exibe o preço corretamente(sem number_format), e especial nao consigo gerar o subtotal,gostaria de
ajuda para gerar o subtotal e formatar o preço e o subtotal corretamente.eis o código:
.<?php
include(dirname(__FILE__) . './funcao/conecta.php');
session_start();

if (!isset($_SESSION['shop'])) {
$_SESSION['shop'] = array();
}

if (isset($_GET['acao'])) { // adicionar produto
$id = isset($_GET['id']) ? intval($_GET['id']) : null;
if ($_GET['acao'] == 'add') {
if (!isset($_SESSION['shop'][$id])) {
$_SESSION['shop'][$id] = 1;
}
} elseif ($_GET['acao'] == 'del') { //REMOVER shop
if (isset($_SESSION['shop'][$id])) {
unset($_SESSION['shop'][$id]);
}
}

//ALTERAR QUANTIDADE
//Se existir $_POST['prod'] então começa..
if (isset($_POST['prod']))
if ($_GET['acao'] == 'atualizar') {
if (is_array($_POST['prod'])) {
foreach ($_POST['prod'] as $id => $qtd) {
$id = intval($id);
$qtd = intval($qtd);
if (!empty($qtd) || $qtd <> 0) {
$_SESSION['shop'][$id] = $qtd;
} else {
unset($_SESSION['shop'][$id]);
}
}
}
}
}
?>
<!doctype html>
<html>
<head>
<meta charset='utf8'>
<title>Seja Bem Vindo!</title>
<link rel="stylesheet" href="css/default.css">
</head>
<body>
<div><h2>Suas Compras Efetuadas:</h2>
<br>
<table border="1" width="100%">
<thead>
<tr>
<th width="10%">FOTO</th>
<th width="10%">NOME</th>
<th width="10%">DESCRIÇÃO</th>
<th width="10%">TAMANHO</th>
<th width="10%">COR</th>
<th width="10%">PREÇO</th>
<th width="10%">QTD.</th>
<th width="10%">SUBTOTAL</th>
<th width="10%">REMOVER</th>
</tr>
</thead>
<tr><td colspan="9">
<form action="?acao=atualizar" method="post">
<table><tfoot>
<tr>
<td><input type="submit" value="Atualizar"></td>
</tr><tr>
<td><a href="./index.php">Continuar Comprando</a></td>
</tr><tr>
<td><a href="./admin/finalizar.php">Finalizar Pedido</a></td>
</tfoot></table>
</form>
</td></tr>
<tbody>
<?php
$total = 0;
if (count($_SESSION['shop']) == 0) {
echo '<tr><td colspan="9"><div class="#">O cesto de compras esta vazio!</td></tr>';
} else {
$conn = new PDO("mysql:host=localhost;dbname=loja", "root", "");
foreach ($_SESSION['shop'] as $id => $qtd) {
$cart = $conn->prepare("SELECT * FROM produtos WHERE id=$id");
$cart->setFetchMode(PDO::FETCH_ASSOC);
$cart->execute();
while ($linha = $cart->fetch()) {
$foto = $linha['foto'];
$nome = $linha['nome'];
$descricao = $linha['descricao'];
$tamanho = $linha['tamanho'];
$cor = $linha['cor'];




$preco = number_format((float) $linha['preco'] * $qtd, 2, ',', '.');
$sub = number_format((float) $linha['preco'] * $qtd, 2, ',', '.');
$sub = $linha['preco'] * $qtd;
$total += $preco;
$total = number_format($total, 2, ',', '.');
echo '<tr>
<td><img src = "' . $foto . ' " width = "100px"</td>
<td>' . $nome . '</td>
<td>' . $descricao . '</td>
<td>' . $tamanho . '</td>
<td>' . $cor . '</td>

<td>R$ ' . $preco . '</td>
<td><input type="text" size="3" name="prod[' . $id . ']" value="' . $qtd . '" /></td>
<td>R$ ' . $sub . '</td>
<td colspan = "9"><a href="?acao=del&id=' . $id . '"><img src="./imagens/remover.png" width="70" height="70" ></td>
</tr>';
}
}
}
?>
</table>
</div>
</body>
</html>



  






Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts