paraschhabra96

script

Jun 24th, 2016
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <script>
  2. $(document).ready(function(){
  3. $("#Submit1").click(function(){
  4. var name=$("#Text1").val();
  5. var email=$("#Text3").val();
  6. var mobile=$("#Text2").val();
  7. var pass=$("#Password1").val();
  8. $.post("signup.php",{NAME: name, EMAIL: email, MOBILE: mobile, PASSWORD: pass}, function(data){
  9. alert(data);
  10. });
  11. });
  12. });
  13. </script>
Add Comment
Please, Sign In to add comment