Created
November 9, 2009 16:01
-
-
Save stas/230052 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
#include("../config.php"); | |
function epayment_updates($url, $post)#, $save_to, $cookie) | |
{ | |
$th = curl_init($url); | |
#$fp=fopen($save_to, "w"); | |
curl_setopt($th, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($th, CURLOPT_BINARYTRANSFER, true); | |
curl_setopt($th, CURLOPT_FOLLOWLOCATION,1); | |
#curl_setopt($th, CURLOPT_FILE, $fp); | |
curl_setopt($th, CURLOPT_HEADER, 0); | |
curl_setopt($th, CURLOPT_CONNECTTIMEOUT, 10); | |
curl_setopt($th, CURLOPT_POST, 1) ; | |
curl_setopt($th, CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13'); | |
curl_setopt($th, CURLOPT_POSTFIELDS, $post); | |
curl_setopt($th, CURLOPT_SSL_VERIFYPEER, 0); | |
curl_setopt($th, CURLOPT_SSL_VERIFYHOST, 0); | |
#curl_setopt($th, CURLOPT_COOKIEJAR, $cookie); | |
#curl_setopt($th, CURLOPT_COOKIEFILE, $cookie); | |
$data = curl_exec($th); | |
#print_r(curl_getinfo($th)); | |
print_r($data); | |
curl_close($th); | |
#fclose($fp); | |
} | |
$url = "http://www.premiulhenkelpentruarta.ro/2009/voteaza_2009.php"; | |
$post = "a=3&c=2&n=3"; | |
for ($i = 0; $i <= 300; $i++) { | |
epayment_updates($url, $post); | |
sleep(600); | |
} | |
#header("Location: $project_url"); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment