Guest User

Untitled

a guest
Feb 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. WebClient cl = new WebClient();
  2. cl.Encoding = System.Text.Encoding.UTF8;
  3. Console.WriteLine(cl.UploadString("http://url.com", "input values"));
  4. Console.ReadKey();
  5.  
  6. <?php
  7.  
  8. echo file_get_contents('php://input');
  9.  
  10. ?>
Add Comment
Please, Sign In to add comment