Guest User

Untitled

a guest
Jan 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. echo 'hi';
  3. $_GET['id'];
  4. ?>
  5. <script src="jquery.js"></script>
  6. <script>
  7.  
  8. $(function (){
  9.  
  10. var id=10;
  11. $.ajax({
  12.  
  13. url: 'something.php',
  14.  
  15. data: { 'id' : id}, //send id
  16.  
  17. success: function(data) {
  18. $('#stu_name').val(data.name);
  19. },
  20. dataType: 'json' //also can be xml
  21.  
  22. });
  23.  
  24.  
  25. })
  26. </script>
  27.  
  28. <form action='jquery.php' method='GET'>
  29. ID: <input type='text' name='id'>
  30. Name:<input type='text' name='stu_name'>
  31. </form>
Add Comment
Please, Sign In to add comment