I'm querying a database through php and trying to store the result as a php array.
But when I echo $results and call the file in my browser, I just see "Array"
How can I see the results/whats inside of the array?
//find data as an associative array
$results = ORM::for_table('table_name')
->where('slug', 'slug_name')
->where('date', DATE>='2000-01-01')
->where('data', DATA)
->find_array();
echo $results