In a php data strucutre,
global $database;
$database = array(
array('something', 'something_else'),
array('anotherthing', 'yet_another'),
array('almost_there', 'last_thing'),
);
you would extract as follows,
print $database[0][0]; // should print the first scalar from the first array
so...