Jump to content

Php Session Shopping Cart Problem


nepoverljiv

Recommended Posts

I have one code which I use to add articles in shopping cart. In another website working without any kind of problem, but on new one he makes me problem, he add me double article in shopping cart. I press once “add to basket” but he put me twice that articles. When I press “add to basket” I calling this code to found out which articles is:

 

<?php
   session_start();  
   $var=$_SERVER['REQUEST_URI']; //reading
   $id = substr(strrchr($var, "korpa?"),6 );//reading first element after  "?"
   $tbl_name="description"; //table name
   $_SESSION['korpa']+=$row[price];	 
   if($_SESSION['numproduct']==0){
    $_SESSION['articles']=array($id);
    $_SESSION[numproduct]++;
   }else{
    array_push($_SESSION['articles'],$id);
    $_SESSION[numproduct]++;
   }
   redirect("javascript: history.go(-1)");
?>

 

On main page I using this code to see what exist in shopping cart:

 

$i=0;
$tbl_name="description";
$query = count($_SESSION['articles']);
if($query==0){
   echo "Your shopping cart is empty.";
}else{
   echo "In your shopping cart exist:<br/><br/>";
   for($i=0;$i<=$query-1;$i++){
   $br=$i+1;
connect();
   $element=$_SESSION['articles'][$i];
   $sql="SELECT * FROM $tbl_name WHERE id=$element";
   $subject_set=mysql_query($sql);
   $subject=mysql_fetch_array($subject_set);
   echo "   ".$br.". ";
   echo $subject['name'];
   echo " - <b>".$subject['prices']." USD</b><br/>  ";
}
echo "<p align=right><a href=index.php?=order class=basket>Order</a> · <a href=includes/delete.php>Delete items</a></p>";

 

Does anyone knows why articles goes twice in shopping cart?

Link to comment
Share on other sites

I wanna get in my shopping cart this:

 

1.Name of first articles - Price of first articles

 

After I add one more wanna get this:

 

1.Name of first articles - Price of first articles

2.Name of second articles - Price of second articles

 

But instead that I get this:

 

1.Name of first articles - Price of first articles

2.Name of first articles - Price of first articles

 

After I add one more wanna get this:

 

1.Name of first articles - Price of first articles

2.Name of first articles - Price of first articles

3.Name of second articles - Price of second articles

4.Name of second articles - Price of second articles

 

I am using exactly same code on another website and there working ok, I can't figured it out why happen this on new one sites.

Edited by nepoverljiv
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

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

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.