Please do not share this with too many because it is intended to be used with discretion. I have a script that no longer returns. It times out and does not show anything:
<?php
FOR ($i = 1; $i <= 55; $i++)
{
$html = file_get_contents("http://www.cool-proxy.net/index.php?action=proxy-list&page=$i");
preg_match_all('/<div align="left"><a href="(.?)">(.?)<\/a><\/div>/s',
$html,
$posts, // will contain the proxies
PREG_SET_ORDER // formats data into an array of proxies
);
foreach ($posts as $post) {
$link = $post[1];
$title = $post[2];
echo ("$title");
echo "<br>";
}
}
?>