News:

Bored?  Looking to kill some time?  Want to chat with other SMF users?  Join us in IRC chat or Discord

Main Menu

How To Make Random Header Images

Started by mindazor, January 12, 2020, 06:27:24 AM

Previous topic - Next topic

mindazor

hallo evry one I nead a Code How to make Random Header Background Images?

Like this one: forum [nofollow]

Looking

There are many ways to do this but it is more than the code, you will need to implement it in theme properly but in any case you could use PHP to do a random pick between numbers and then put the class in relevant place like:

$random=rand(1,3);
$headercss="cssclass";
if($random==2){$headercss="cssclass2";}
if($random==3){$headercss="cssclass3";}

Sir Osis of Liver

Can also do it like this -



$pic = rand(1,5);

echo '
<img src="',$settings['images_url'],'/img/topr', $pic ,'.jpg" alt="" />';



Where images are topr1.jpg, topr2.jpg, etc.
Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Advertisement: