Advertisement
Guest User

Untitled

a guest
Aug 26th, 2018
588
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2. $username = 'teste';
  3. $password = 'teste00';
  4. $url = 'http://cinecriciuma.com.br:8000/player_api.php?username=' . $username . '&password='. $password;
  5. $http = curl_init($url);
  6. curl_setopt($http, CURLOPT_SSL_VERIFYPEER, 0);
  7. curl_setopt($http, CURLOPT_SSL_VERIFYHOST, 0);
  8. $result = curl_exec($http);
  9. $http_status = curl_getinfo($http, CURLINFO_HTTP_CODE);
  10. print curl_error($http);
  11. curl_close($http);
  12. echo $http_status;
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement