Skip to content
archaeron edited this page Mar 20, 2011 · 2 revisions
<?php

$sample_data = array
(
    array
    (
        'id' => 4,
        'price' => 200,
        'name' => 'bicycle'
    ),
    array
    (
        'id' => 5,
        'price' => 300,
        'name' => 'dog'
    ),
    array
    (
        'id' => 2,
        'price' => 700,
        'name' => 'car'
    ),
    array
    (
        'id' => 6,
        'price' => 400,
        'name' => 'computer'
    ),
);

?>
Clone this wiki locally