Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $post_url = "http://samp4free.com/live/live.php";
- $connection_data = array("a" => "init");
- for($i = 1; $i <= 90; $i++)
- {
- $start_connection = curl_init($post_url);
- curl_setopt ($start_connection, CURLOPT_POST, true);
- curl_setopt ($start_connection, CURLOPT_POSTFIELDS, $connection_data);
- curl_setopt ($start_connection, CURLOPT_RETURNTRANSFER, true);
- echo curl_exec ($start_connection);
- curl_close($start_connection);
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment