|
0
|
1 |
<?php |
|
|
2 |
|
|
|
3 |
/* yadl_spaceid - Skip Stamping */ |
|
|
4 |
|
|
|
5 |
$inventory = array( |
|
|
6 |
array("SKU"=>"23-23874", "Price"=>23.99, "Item"=>"Helmet"), |
|
|
7 |
array("SKU"=>"48-38835", "Price"=>14.97, "Item"=>"Football"), |
|
|
8 |
array("SKU"=>"84-84848", "Price"=>3.49, "Item"=>"Goggles"), |
|
|
9 |
array("SKU"=>"84-84843", "Price"=>183.00, "Item"=>"Badminton Set"), |
|
|
10 |
array("SKU"=>"84-39321", "Price"=>6.79, "Item"=>"Tennis Balls"), |
|
|
11 |
array("SKU"=>"39-48949", "Price"=>618.00, "Item"=>"Snowboard"), |
|
|
12 |
array("SKU"=>"99-28128", "Price"=>78.99, "Item"=>"Cleats"), |
|
|
13 |
array("SKU"=>"83-48281", "Price"=>4.69, "Item"=>"Volleyball"), |
|
|
14 |
array("SKU"=>"89-32811", "Price"=>0.59, "Item"=>"Sweatband"), |
|
|
15 |
array("SKU"=>"28-22847", "Price"=>779.98, "Item"=>"Golf Set"), |
|
|
16 |
array("SKU"=>"38-38281", "Price"=>8.25, "Item"=>"Basketball Shorts"), |
|
|
17 |
array("SKU"=>"82-38333", "Price"=>1.39, "Item"=>"Lip balm"), |
|
|
18 |
array("SKU"=>"21-38485", "Price"=>0.07, "Item"=>"Ping Pong ball"), |
|
|
19 |
array("SKU"=>"83-38285", "Price"=>3.99, "Item"=>"Hockey Puck") |
|
|
20 |
); |
|
|
21 |
|
|
|
22 |
header("Content-Type: application/json"); |
|
|
23 |
//header("Content-Type: text/plain"); |
|
|
24 |
echo json_encode($inventory); |
|
|
25 |
|
|
|
26 |
?> |