GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   gallery rotator script (https://gfy.com/showthread.php?t=199683)

IMP^or^SNiTL.e 11-19-2003 11:52 PM

gallery rotator script
 
i need a gallery rotator script anyone know of any good ones?

QualityMpegs 11-20-2003 12:10 AM

Works like a charm... http://www.scriptarchive.com/rand_link.html

Mr Pheer 11-20-2003 01:03 AM

Quote:

Originally posted by QualityMpegs
Works like a charm... http://www.scriptarchive.com/rand_link.html
Screw that perl shit

contact me and I'll send you a 7 line php solution

4Pics 11-20-2003 02:50 AM

post the 7 line php script. maybe someone can make it 6 lines
:winkwink:

LiveDose 11-20-2003 04:11 AM

Quote:

Originally posted by 4Pics
post the 7 line php script. maybe someone can make it 6 lines
:winkwink:


yeah! what he said... :winkwink:

peewee 11-20-2003 04:26 AM

<(?)php
// geef random "$display" aantal links weer uit een text file genaamd "$file"

function random_links($file, $display) {
$filenaam = $file . '.txt';
$f = file($filenaam);
srand((double)microtime()*1000000);
for($c=0; $c<=$display; $c++) {
$i = rand(0,count($f)-1);
list ($url, $desc) = split("\|", $f[$i]); $desc = rtrim($desc);
echo '<a href="'.$url.'">'.$desc.'</a><br>';
}
} // einde functie: random_links

?>

<(?)php
random_links('http://??????', 25);
?>

IMP^or^SNiTL.e 11-20-2003 05:20 AM

rad cheers


All times are GMT -7. The time now is 09:21 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123