Guest User

Untitled

a guest
May 27th, 2012
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. POST json data using form
  2. {"method":"like","data":{"type":1,"id":123}}
  3.  
  4. <script>
  5. jQuery(document).ready(function(){
  6. jQuery("#form").submit();
  7. });
  8. </script>
  9.  
  10. $(document).ready(function(){
  11. $.post("script.php", { <?php echo $string; ?> },
  12. function() {
  13. alert("Your test.php page received the string!);
  14. });
  15. });
Advertisement
Add Comment
Please, Sign In to add comment