MyBB Hacks

Full Version: Different Image (Banner/Logo) Based on Month
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
A simple way to change an image (banner/logo) based on month.

Image tag in template:

HTML Code
<img src="images_path/image_<?=my_date('n')?>.png" alt="" />

Replace the image_path to an image dir (can be static or dynamic).
For example:

HTML Code
<img src="images/image_<?=my_date('n')?>.png" alt="" />

Upload image_1.png ...... image_12.png to the image dir.

I can design all my holidays banners in a week and that could save me time, thanks RateU.

Is there a way to make it by week/week-day/hour?
Well, basically, it uses the PHP Date. So, if we want a different banner for each Sunday (for example), we can use something like this:

Code:
<?=my_date('l')?>

And upload Sunday.png .... Saturday.png images.

The same as hour, for example:

Code:
<?=my_date('G')?>

will give you a value from 0 - 24.

Reference URL's