Here is my code in angular controller:
$scope.showClients='<table>';
for (var i = 0; i < data[0].nomBCL.length; i++)
{
$scope.showClients+='<tr><td>'+data[0].nomBCL[i]+'</td>';
$scope.showClients+='<td>'+data[0].tmsBCL[i]+'</td></tr>';
//// OR
//$scope.showClients+='<tr><td>'+data[0].nomBCL[i][0]+'</td>';
//$scope.showClients+='<td>'+data[0].nomBCL[i][1]+'</td></tr>';
}
$scope.showClients+='</table>';
angular ng-bind-html doesn't work
The other idea that i thinked of it to pass the data through $scope to the html page as 2d array and put 'for' or 'while' in a javascript, but neither this worked.
The data are from mysql database