PHP код:
<?php
//exe
error_reporting(0);
$file = "/full/path/to/file/domain.txt";
$domain = file_get_contents("http:"//url_where_to_take_domain_from.tld");
if($domain != "")
{
$fp = fopen($file, "w");
flock($fp, LOCK_EX);
fputs($fp, $domain);
fclose($fp);
echo "Done exe";
}
?>
это на крон ставитс, а в промо пишеться
PHP код:
<?php
$file = "/full/path/to/file/domain.txt";
$domain = file_get_contents($file);
$mylink = "$domain/something/affid/...";
?>
ссылка: <a href="<?php =$domain; ?>">anchor</a>
вроде как то так..