Posts: 8,510
Threads: 386
Joined: Feb 2011
Reputation:
279
2012-01-18, 10:50 PM
You can make a PHP script that can do so. Google it
-Paul H.
Cogisne lingua latina?
Posts: 8,510
Threads: 386
Joined: Feb 2011
Reputation:
279
2012-01-22, 01:22 AM
(This post was last modified: 2012-01-22, 02:00 AM by Paul H..)
Here a tut that doesn't use core file edits:
Use this and name it say, logo.php:
<?php
$img = array();
$img[] = "logo1.png";
$img[] = "logo2.png";
$img[] = "logo3.png";
$img[] = "logo4.png";
$img[] = "logo5.png";
$rand = array_rand($img, 1);
header("Location: {$img[$rand[0]]}");
?>
Then point your header image to logo.php
That
should work.
-Paul H.
Cogisne lingua latina?
Posts: 8,510
Threads: 386
Joined: Feb 2011
Reputation:
279
2012-01-22, 02:00 AM
Oops
fixed
-Paul H.
Cogisne lingua latina?
Posts: 8,510
Threads: 386
Joined: Feb 2011
Reputation:
279
2012-01-22, 03:09 PM
(This post was last modified: 2012-01-22, 03:09 PM by Paul H..)
Replace these
$img[] = "logo1.png";
with whatever the images are you want to show up, e.g.
$img[] = "inigo_montoya.png";
and then point the header image to the php file.
-Paul H.
Cogisne lingua latina?