QUOTE(ScorLibran @ Nov 6 2003, 09:57 AM)
Sheesh! If it were up to me, there would be six logos at the top of the Hydrogenaudio forum pages!
Perhaps they should rotate on each reload. I'm not a big PHP guy (yet), but this is what I usually do with server-side includes and c:
CODE
int main()
{
char *fname[] = {
"logo1.png",
"logo2.png",
"logo3.png",
"logo4.png",
"logo5.png",
"logo6.png",
};
int number;
srand(time(NULL));
number = rand() % 6;
printf("<img src=\"./logos/%s", *(fname+number));
printf("\" border=0>");
return 0;
}
..Of course this code doesn't benefit the discussion any, and really just seems like I'm tooting my horn. Shame on me.