Jump to content
Fórum Script Brasil
  • 0

carrinho só deixa adicionar mesmo produto 1 vez gostaria de alterar qt


naldo_10

Question

Esse codigo só deixa adicionar o produto uma vez no carrinho teria como muda-lo para que ele venha somar e alterar quantidade no carrinho

e deixe adicionar omesmo produto mais de uma vez ao clicar ?

function incluir_no_carrinho($codigo_produto)
{
$sql_produto = "select * from tbl_produto where PROD_CODIGO = ".$codigo_produto;
$this->resultado_prod = $this->con->banco->Execute($sql_produto);
$this->registro_prod = $this->resultado_prod->FetchNextObject();

$sql_carrinho = "insert into tbl_carrinho (PROD_CODIGO, CAR_SESSAO, CAR_QUANTIDADE, CAR_VALOR, CAR_DATA) 
values (".$codigo_produto.",'".session_id()."',1,".$this->registro_prod->PROD_VALOR.",'".date('Y-m-d')."')";

if($this->resultado_car = $this->con->banco->Execute($sql_carrinho))
{
alerta('produto inserido no carrinho com sucesso');
return true;
}
else
{
alerta('erro ao tentar inserir no carrinho');
return false;
}

}
--
-- Estrutura da tabela `tbl_carrinho`
--

CREATE TABLE IF NOT EXISTS `tbl_carrinho` (
`PROD_CODIGO` int(11) NOT NULL,
`CAR_SESSAO` varchar(60) NOT NULL,
`CAR_QUANTIDADE` int(11) DEFAULT NULL,
`CAR_VALOR` decimal(15,2) DEFAULT NULL,
`CAR_DATA` date DEFAULT NULL,
PRIMARY KEY (`PROD_CODIGO`,`CAR_SESSAO`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--

Edited by kuroi
Adicionar tag CODE
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

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...