Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
Benim dedigim ile alakası yok gösterdigin konuda, kendi ip adresinden hit saglıyor ben proxy ipelrini gödnermek istiyorum.
<?php
$proxylist = file('proxylist.txt');
$proxy = $proxylist[array_rand($proxylist, 1)];
$parcala = explode(':', $proxy);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://ipimne.com/');
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXYPORT, $parcala[1]);
curl_setopt($ch, CURLOPT_PROXYTYPE, 'HTTP');
curl_setopt($ch, CURLOPT_PROXY, $parcala[0]);
$data = curl_exec($ch);
curl_close($ch);
echo $data;
?>