<?
$array = array('<a href="http://site.com">LINK1</a>','<a href="http://site2.com">LINK2</a>','<a href="http://site3.com">LINK3</a>','<a href="http://site4.com">LINK4</a>');
echo $array[rand(0,3)];
?>
/// из текстового фала
<?
$link=file("file.txt");
$LinkCount=count($link);
$NL=rand(0, $LinkCount-1);
echo $link[$NL];
?>