Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $url = 'http://www.serveurs-minecraft.org/vote.php?id=29969';
- $timeout = 10;
- $postFields=array("confirmation" => "true");
- // Tableau contenant les options de téléchargement
- $options=array(
- CURLOPT_URL => $url,
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_HEADER => false,
- CURLOPT_FAILONERROR => true,
- CURLOPT_POST => true,
- CURLOPT_POSTFIELDS => $postFields
- );
- $ch = curl_init($url);
- curl_setopt($ch, CURLOPT_FRESH_CONNECT, true);
- curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
- curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
- curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); */
- curl_setopt_array($ch,$options);
- $content = curl_exec($ch);
- curl_close($ch);
- echo $content;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement