Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. alert(id);//Getting value
  2.  
  3.  
  4. $http.post('abc.php?flag=pqr',
  5. {
  6. 'q' : i,//value is not posting
  7. 's' : d ////value is not posting
  8. //How to send value of i and d to abc.php page
  9. })
  10. .success(function (data, status, headers, config) {
  11. alert(data);
  12. alert("Product has been Submitted Successfully");
  13.  
  14. })
  15.  
  16. .error(function(data, status, headers, config){
  17. alert("Something went wrong please try again");
  18.  
  19. });
  20.  
  21.  
  22.  
  23.  
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement