/home/mjc1/public_html/html/millennium/cart_class.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
class item
{
    var $name;
    var $price;
    var $qty;

}

 

class cart
{
    var $item;

    function insert( $code, $name, $price, $qty)
    {
        $this->item[$code] = new Item;
        $this->item[$code]->name = $name;
        $this->item[$code]->price = $price;
        $this->item[$code]->qty= $qty;

    }

    function fet_item( )
    {
        $temp = current( $this->item );
        if ( !$temp )
        {
            reset( $this->item );
        }
        else
        {
            next( $this->item );
        }
        return $temp;
    }

    function delall( )
    {
        unset( $this["item"] );
    }
}