%PDF- %PDF-
Direktori : /home/pantanal/www/ |
Current File : /home/pantanal/www/inc_orcamento.php |
<? if(count($_SESSION['Carrinho']['Produto']) >= 2){ ?> <div id="carrinho"> <table width="100%" cellpadding="5" cellspacing="5"> <tr> <td height="24" colspan="2" align="center" bgcolor="#EFEFEF"><div align="left"><strong style="font-size:13px;"> <? echo Traducao($_SESSION['versao'],21,$pantanal); ?></strong></div></td> <td width="80" align="center" bgcolor="#EFEFEF"><strong style="font-size:13px;"><? echo Traducao($_SESSION['versao'],22,$pantanal); ?></strong></td> <td width="80" align="center" bgcolor="#EFEFEF"><strong style="font-size:13px;"><? echo Traducao($_SESSION['versao'],23,$pantanal); ?></strong></td> <td width="80" align="center" bgcolor="#EFEFEF"><strong style="font-size:13px;"><? echo Traducao($_SESSION['versao'],24,$pantanal); ?></strong></td> </tr> <?php $total = 0; foreach($_SESSION['Carrinho']['Produto'] AS $key => $valor){ if ("Nulo" <> $key) { ?> <?php mysql_select_db($database_pantanal, $pantanal); $query_produtos = "SELECT titulo_".$_SESSION['versao'].", imagem, id, subtitulo_".$_SESSION['versao'].", preco FROM produtos WHERE id = ".$key.""; $produtos = mysql_query($query_produtos, $pantanal) or die(mysql_error()); $row_produtos = mysql_fetch_assoc($produtos); $totalRows_produtos = mysql_num_rows($produtos); ?> <tr> <td width="150" align="left"><img src="produtos/peq/<? echo $row_produtos['imagem']; ?>" alt="" /></td> <td id="orcamento"> <div id="titulo"><?php echo $row_produtos['titulo_'.$_SESSION['versao']]; ?></div> <div id="subtitulo"><?php echo $row_produtos['subtitulo_'.$_SESSION['versao']]; ?></div> <div id="preco"><strong>R$ <?php echo number_format($row_produtos['preco'], 2, ',', '.'); ?></strong></div> </td> <td width="80" align="center"><input type="text" id="qtd<? echo $key; ?>" value="<? echo $_SESSION['Carrinho']['Produto'][$key]['qtd']; ?>" size="1" class="input" style="width:20px;"/> <a href="#<? echo $key; ?>" onclick="Alterar('alterarQtd.php', '<? echo $key; ?>')" ><img src="images/botao_atualizar_qtda.gif" alt="" class="add" title="Atualizar Quantidade"/></a></td> <td width="80" align="center"><input type="text" id="qtd2<? echo $key; ?>" value="<? echo $_SESSION['Carrinho']['Produto'][$key]['qtd2']; ?>" size="1" class="input" style="width:20px;"/> <a href="#<? echo $key; ?>" onclick="Alterar('alterarQtd.php', '<? echo $key; ?>')" ><img src="images/botao_atualizar_qtda.gif" title="Atualizar Quantidade" class="add"/></a></td> <td width="80" align="center"><a href="excluiProduto.php?produto=<? echo $key; ?>" class="style4" onclick="Excluir('excluiProduto.php', '<? echo $key; ?>')" ><img src="images/excluir.gif" border="0" /></a></td> </tr> <? mysql_free_result($produtos); } } ?> </table> <table width="100%" height="42" border="0" align="right" cellpadding="0" cellspacing="0"> <tr> <td align="right"><a href="orcamento_passo2.php"><img src="images/<? echo $_SESSION['versao']; ?>/agendar.gif" border="0" /></a></td> </tr> </table> </div> <? } ?>