Advertisement
Guest User

Untitled

a guest
Mar 14th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2.        
  3.     $c = curl_init();
  4.    
  5.     curl_setopt($c,CURLOPT_URL,'https://joemonster.org/user.php');
  6.    
  7.     curl_setopt($c,CURLOPT_POST,1);
  8.    
  9.     curl_setopt($c,CURLOPT_POSTFIELDS,'_username=ojajebe123&_password=flatronlg');
  10.    
  11.     curl_setopt($c,CURLOPT_HEADER,1);
  12.     curl_setopt($c,CURLOPT_RETURNTRANSFER,1);
  13.    
  14.     $txt = curl_exec($c);
  15.    
  16.     curl_close($c);
  17.    
  18.     echo('--'.$txt.'--');
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement