{{t.name}}
{{t.country}}
var app=angular.module('myApp',[]); app.controller('ctrl',function($scope, $http) { $http.get("student.php").then(funtion(response){ $scope.names=response.data.records; }); });