SHARE
TWEET

Untitled

a guest Oct 5th, 2016 57 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. angular.module('registration', [])
  3.     .controller('RegistrationController',['$http','$scope', function($scope){
  4.         var isvalid = true;
  5.         if(isvalid){
  6.         $scope.submit = function(user){
  7.        
  8.             $http.post("registration_validate.php", user).then(function(user) {
  9.             alert('success');
  10.         })
  11.              
  12.         };
  13.        
  14.         };
  15.     }]);
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top