Advertisement
crayawn

Untitled

May 31st, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. $url = "http://api.mcbans.com/v2/05f528996527e63b5eae1bee554d822dd042f779/";
  2.  
  3. $datatopost = array (
  4. "exec" => "playerLookup",
  5. "player" => $username
  6. );
  7. $ch = curl_init ($url);
  8. curl_setopt ($ch, CURLOPT_POST, true);
  9. curl_setopt ($ch, CURLOPT_POSTFIELDS, $datatopost);
  10. curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
  11. $res = curl_exec ($ch);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement