Этот скрипт должен выдать строку ссылок
(include("
http://dmitry-portal.ru/cgi-bin/index3/answer.cgi?login=oncename&password=******&url=".urlencode($url)."&ua=".urlencode($HTTP_SERVER_VARS['HTTP_USER_AGENT']))

но функция include не работает на данном хосте чем можно ее заменить


ПОЛНЫЙ СКРИПТ:
<?php
$url = "http://" . $HTTP_SERVER_VARS['HTTP_HOST'] . $HTTP_SERVER_VARS['REQUEST_URI'];
ini_set('error_reporting','E_ERROR');
if($ch = curl_init()){
curl_setopt($ch, CURLOPT_URL, "
http://dmitry-portal.ru/cgi-bin/index3/answer.cgi?login=oncename&password=********&url=".urlencode($url)."&ua=".urlencode($HTTP_SERVER_VARS['HTTP_USER_AGENT']));
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
curl_exec($ch);
curl_close($ch);
}else{
if(ini_get('allow_url_fopen')){
include("
http://dmitry-portal.ru/cgi-bin/index3/answer.cgi?login=oncename&password=******&url=".urlencode($url)."&ua=".urlencode($HTTP_SERVER_VARS['HTTP_USER_AGENT']));
}}
?>