Yahoo! Search Marketing
50 euro di sconto per Yahoo! Search Marketing?
Vuoi essere primo su Yahoo!, AltaVista, Lycos, MSN, Excite e altri? Con Yahoo! Search Maketing puoi farlo pagando a partire da 0,05 Euro a click.
//opening the text file, if this line gives you error when compiling
//then you need to chmod 755 your text file
$fcontents = join (”, file (‘content.txt’));
//Spliting contents of file by looking for ~ mark between contents
//and storing everything into an array.
$s_con = split(“~”,$fcontents);
//getting a random number which will be within the limit of the
//contents of the file, means if 5 different banners/ads/contents then the number
//will be between 0-4 (total 5 )
$banner_no = (rand()%(count($s_con)-1));
//simple echo the content
echo $s_con[$banner_no];
?>