|
|
|
|
|
|
|
|
|
#5 | |
|
The Original Greenguy (Est'd 1996) & AVN HOF Member - I Crop Pics For Thumbs In My Sleep
|
Quote:
I KNOW THIS!!! ![]() Create a text file with what you want pulled randomly - for example: https://www.link-o-rama.com/greenguy...nks-header.txt (simple banner rotator) Make sure there is no extra empty line or return at the end. Then put this coding on your page: Code:
<?php
$file = "/home/greenguy/domains/link-o-rama.com/public_html/greenguy/includes/mlinks-header.txt";
$banners = file($file);
srand((float) microtime() * 1235689);
$selected = array_rand($banners);
$SelBanner = trim($banners[$selected]);
if ($SelBanner=="") {
$SelBanner = trim($banners[0]);
};
echo $SelBanner;
?>
That's running the top banner on here. (thank you cd34) |
|
|
|
|
|
|