Im using the following array, but wondering if theres a better way to load this data from an external file? or is this the best way?
$people = array(
"0" => array(
"name" => 'Peter',
"job" => "Builder",
"location" => "Ca"
),
"1" => array(
"name" => 'Bob',
"job" => "Designer",
"location" => "Ca"
),
"2" => array(
"name" => 'Tony',
"job" => "Manager",
"location" => "Fl"
),
);