Pytrin - perfect! The cache idea worked. So, here's the PHP code. I'm guessing it's not the best idea to toss into your main site, like a header, but for this one situation where I have a hub of initial content to return to, it's perfect. Thanks. :}
Code: Select all
//Set no caching
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
And not sure by what you mean by "obsolete" - as far as I know, smartphones will render image maps perfectly as do all other browsers. If you mean to say they're just not that great of an idea to implement, that's definitely true - I have plans to put the links into nice little divs eventually, but that front page was made a while ago and I just wanted to get it done. I don't think it's particularly hideous, anyway.

But it's time to spruce the page up a bit.
Thanks for all your helps.