Guest User

Untitled

a guest
Jul 22nd, 2011
472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?php
  2.     $post_url = "http://samp4free.com/live/live.php";
  3.    
  4.     $connection_data = array("a" => "init");
  5.    
  6.     for($i = 1; $i <= 90; $i++)
  7.     {
  8.         $start_connection = curl_init($post_url);
  9.        
  10.         curl_setopt ($start_connection, CURLOPT_POST, true);
  11.        
  12.         curl_setopt ($start_connection, CURLOPT_POSTFIELDS, $connection_data);
  13.        
  14.         curl_setopt ($start_connection, CURLOPT_RETURNTRANSFER, true);
  15.        
  16.         echo curl_exec ($start_connection);
  17.        
  18.         curl_close($start_connection);
  19.     }
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment