I have mysql table with collumns like \'operation.date\', \'operation.name\' and etc. After fetching that table data as object with $mysqli->fetch_object() i
$mysqli->fetch_object()
You can get assoc array instead object by using $mysqli->fetch_assoc()
$mysqli->fetch_assoc()