var app=angular.module("myApp", []);
app.controller('myCtrl', function($scope, $http) {
$http.get("http://brucegust.com/adm/term_list_json.php")
.then(function (response) { $scope.terms = response.data.records; })
.catch(function (error) { console.error(error); });
});