amoussa11

Exchanging Data

Feb 19th, 2019
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.30 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h2>Convert a JavaScript object into a JSON string, and send it to the server.</h2>
  6.  
  7. <script>
  8. var myObj = { name: "John", age: 31, city: "New York" };
  9. var myJSON = JSON.stringify(myObj);
  10. window.location = "demo_json.php?x=" + myJSON;
  11. </script>
  12.  
  13. </body>
  14. </html>
Add Comment
Please, Sign In to add comment