Thread Rating:
  • 1 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Change Background Color using php
#9
(10-14-2009, 03:51 AM)NinjaGeek Wrote: And I had an idea based on this script..... Changes the color based on the four seasons

PHP Code:
function fourSeasons() {
    
$month date("m");
    
$color "#ff0000";
    if(
$month >= && $month <= 5) {
        
$color "#59bd0f";
    }elseif(
$month >= && $month <= 8) {
        
$color "#fece60";
    }elseif(
$month >= && $month <= 11) {
        
$color "#7e5f29";
    }elseif(
$month == 12 || $month <= 2) {
        
$color "#8ed7e8";
    }
    
    return 
$color;
}

print 
'<body bgcolor="'.fourSeasons().'">'


Nice idea. Smile
Reply


Messages In This Thread
Change Background Color using php - by immi - 10-13-2009, 02:22 AM
RE: Change Background Color using php - by Gaijin - 10-13-2009, 04:31 PM
RE: Change Background Color using php - by immi - 10-14-2009, 03:14 AM
RE: Change Background Color using php - by Gaijin - 10-14-2009, 03:18 AM
RE: Change Background Color using php - by immi - 10-14-2009, 03:25 AM
RE: Change Background Color using php - by Gaijin - 10-14-2009, 03:51 AM
RE: Change Background Color using php - by immi - 10-14-2009, 06:18 AM
RE: Change Background Color using php - by Gaijin - 10-14-2009, 06:23 AM
RE: Change Background Color using php - by h1r0n - 10-16-2009, 03:47 AM
RE: Change Background Color using php - by immi - 10-16-2009, 06:23 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  PHP Framework List: An Ultimate Guide to 102 PHP Frameworks for Web Developers tk-hassan 0 956 07-27-2020, 11:26 PM
Last Post: tk-hassan
  Change warning level color with php [help] KingOfHunt3rs 0 1,110 12-04-2014, 08:45 AM
Last Post: KingOfHunt3rs
  PHP Video Tutorials (PHP For Beginners) Eleqtriq 4 3,705 10-10-2011, 01:00 PM
Last Post: Greyersting

Forum Jump:


Users browsing this thread: 13 Guest(s)