PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Dhiman Chakraborty   dcart   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example file for dcart
Class: dcart
Manage shopping cart items stored in sessions
Author: By
Last change:
Date: 11 years ago
Size: 365 bytes
 

Contents

Class file image Download
<?php
include 'dcart.php';

dCart::getInstance('cart')->Remove();
dCart::getInstance('cart')->Add(array(
   
'id' => 1,
   
'name' => 'Pen',
   
'price' => 10,
   
'quantity' => 1
   
)
)->
Add(array(
           
'id' => 1,
           
'name' => 'Pen',
           
'price' => 10,
           
'quantity' => 5
       
)
    );

dCart::getInstance('cart')->Show();