script


SUBMITTED BY: Guest

DATE: Dec. 19, 2013, 9:10 p.m.

FORMAT: Text only

SIZE: 392 Bytes

HITS: 845

  1. <?php
  2. $ch = curl_init();
  3. curl_setopt($ch, CURLOPT_URL, "http://www.nambahfollowers.com/submit.php");
  4. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  5. curl_setopt($ch, CURLOPT_POST, true);
  6. $data = array( 'follow' => '204793404' );
  7. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  8. $output = curl_exec($ch);
  9. $info = curl_getinfo($ch);
  10. curl_close($ch);
  11. ?>

comments powered by Disqus