$row = $overview_response->fetch_array(MYSQLI_NUM);
returns the following as an array:
Array ( [0] => 12 [1] => username [2] => email [3] => a53ccb24bfb1135eb45e675464f948 [4] => Test message [5] => 1 [6] => Test subject [7] => 2016-01-29 15:35:02 )
How could i access the parameters like only the username?
Been testing the following before:
foreach ($row as $key) {
echo $key[1];
}