Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php
  2. $opts = array(
  3. 'http'=>array(
  4. 'method'=>'POST',
  5. 'header'=>'Content-type: application/x-www-form-urlencoded',
  6. )
  7. );
  8. $opts['http']['content'] = json_encode(
  9. array('login'=> $_POST['login'],
  10. 'pass'=> $_POST['pass'],
  11. 'note'=> $_POST['note'])
  12. );
  13. $context = stream_context_create($opts);
  14.  
  15. $st = file_get_contents('https://ei3.rld.org/rest/api/student/create.php', false, $context);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement