Advertisement
Guest User

Untitled

a guest
Aug 10th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2.  
  3. for($i=0; $i< $argv[1]; $i++) {
  4. $myCurl = curl_init();
  5. curl_setopt_array($myCurl, array(
  6. CURLOPT_URL => 'http://caviar-phone.ru/index.php',
  7. CURLOPT_RETURNTRANSFER => true,
  8. CURLOPT_POST => true,
  9. CURLOPT_POSTFIELDS => http_build_query(array('leader'=>'trump', 'result_ids' => '', 'dispatch[my_changes.set_leader_vote]'=> ''))
  10. ));
  11. $response = curl_exec($myCurl);
  12. curl_close($myCurl);
  13.  
  14. echo "{$i}..";
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement