var app = angular.module('myApp', []); app.controller('customersCtrl', function($scope, $http) { $http.get("http://localhost/php/004/kuld.php") .success(function(response) { $scope.dolgozok = response.records;}); });