Ok, I have a problem, I use this in my phpinclude_start:
Code:
switch(intval(time() / 2) % 4)
{
case 0:
$banner = '/designs/images/skin/boredom.gif';
break;
case 1:
$banner = '/designs/images/skin/boredom1.gif';
break;
case 2:
$banner = '/designs/images/skin/boredom2.gif';
break;
case 3:
$banner = '/designs/images/skin/boredom3.gif';
break;
}
and then i use $banner in my header, when I compress all templates the images dont appear, but when I uncompress them they do, any idea?