Advertisement
Guest User

Untitled

a guest
Sep 6th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. $c = curl_init('https://www.mkr.cl/users/login?redirect=/store/product/22207');
  2. curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
  3. curl_setopt($c, CURLOPT_AUTOREFERER, 1 );
  4. curl_setopt($c, CURLOPT_HEADER, 1);
  5. curl_setopt($c, CURLOPT_FOLLOWLOCATION, TRUE);
  6. curl_setopt($c, CURLOPT_POST,true);
  7. curl_setopt($c, CURLOPT_POSTFIELDS, 'username=76696459-1&password=7669');
  8. curl_setopt($c, CURLOPT_COOKIEJAR, 'cookies.txt');
  9. curl_setopt($c, CURLOPT_COOKIEFILE, 'cookies.txt');
  10. $result = curl_exec($c);
  11. curl_close($c);
  12. print_r($result);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement