-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.php
21 lines (17 loc) · 1.09 KB
/
products.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
//list of all the products in the store
$_SESSION['phones']=array( 'Apple iPhone 6'=> array ( 'price'=> 900 , 'quantity' => 0),
'Google Nexus 6'=> array ( 'price'=> 500 , 'quantity' => 0),
'Motorola Moto X'=> array ( 'price'=> 400 , 'quantity' => 0),
'Samsung Galaxy S6'=> array ( 'price'=> 900 , 'quantity' => 0),
);
$_SESSION['tablets']=array( 'Apple iPad Air 2'=> array ( 'price'=> 950 , 'quantity' => 0),
'Apple iPad mini 3'=> array ( 'price'=> 750 , 'quantity' => 0),
'Google Nexus 9'=> array ( 'price'=> 400 , 'quantity' => 0),
'Microsoft Surface Pro3'=> array ( 'price'=> 700 , 'quantity' => 0),
);
$_SESSION['wearables']=array( 'Apple Watch'=> array ( 'price'=> 400 , 'quantity' => 0),
'Motorola Moto 360'=> array ( 'price'=> 250 , 'quantity' => 0),
'Pebble Steel' =>array ( 'price'=> 100 , 'quantity' => 0),
);
?>