Help - Search - Members - Calendar
Full Version: Happy Sunday - Image Question
Movable Type Community Forum > Additional Resources > Tips and Tricks
markn
Good Afternoon.

I am thinking about placing a small picture on my weblog.  I would like to have that image rotate with other images either daily or by page refresh... daily would be better... any ideas?

Thank you very much.

markn@tznet.com
quidnunc.tznet.com
nammer
I have no idea how you might change images daily, but you could try this idea from Scriptygoddess (look in the comments for suggestions on working with images).  There was a thread I started awhile back about displaying two random images on my index page, and now I can't seem to find it - hmmm.
melanie
If you are able to use php you can specify a different image for each day of the week, by saying
CODE
<?php
$Today = date("l");
if($Today == "Monday")
{
    print ("<img src=\"monday.jpg\">");
}
else
if($Today == "Tuesday")
{
    print{"<img src etc,

for each day that has it's own pic,
and have your last else being a default pic, just incase it's not a day of the week wink.gif
markn
Melanie, thanks!

That wasn't what I had in mind, but you know what? I think you just gave me a better idea yet.  I will use this! Thanks alot!

Mark
existentialmoo
melanie:

thanks for the great idea!  you also have a beautiful webpage
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2009 Invision Power Services, Inc.