Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.69 KB | None | 0 0
  1. <html>
  2.    
  3.     <head>
  4.         <title>
  5.             Test
  6.         </title>
  7.         <script src= "angular.min.js"></script>
  8.     </head>
  9.    
  10.     <body>
  11.         <div ng-app="" ng-controller="names">
  12.             <table>
  13.               <tr ng-repeat="x in name">
  14.                 <td>{{ x.nume }}</td>
  15.                 <td>{{ x.ocupatie }}</td>
  16.               </tr>
  17.             </table>
  18.         </div>
  19.  
  20.         <script>
  21.             function names($scope,$http) {
  22.               $http.get("http://localhost/SiteKardinal/includes/nume.php")
  23.               .success(function(response) {$scope.name= response;});
  24.             }
  25.         </script>
  26.     </body>
  27.    
  28.    
  29.        
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement