This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

Change background color using php for a webpage

This is a very simple script that will dynamically change the background color of a webpage using simple php script.Just copy an paste the script below.
<html>
<head>
<title>Background Colors change based on the day of the week</title>
</head>
<?

//mistonline.in
$today
= date("l");
print(
"$today");
if(
$today == "Sunday")
{
$bgcolor = "#FEF0C5";
}
elseif(
$today == "Monday")
{
$bgcolor = "#FFFFFF";
}
elseif(
$today == "Tuesday")
{
$bgcolor = "#FBFFC4";
}
elseif(
$today == "Wednesday")
{
$bgcolor = "#FFE0DD";
}
elseif(
$today == "Thursday")
{
$bgcolor = "#E6EDFF";
}
elseif(
$today == "Friday")
{
$bgcolor = "#E9FFE6";
}
else
{
// Since it is not any of the days above it must be Saturday
$bgcolor = "#F0F4F1";
}
print(
"<body bgcolor=\"$bgcolor\">\n");
?>
<br>This just changes the color of the screen based on the day of the week
</body>
</html>

VN:F [1.5.7_846]
Rating: 0.0/10 (0 votes cast)
VN:F [1.5.7_846]
Rating: 0 (from 0 votes)

Related posts:

  1. Change webpage background color using javascript
  2. Load Another Webpage Content Using Simple Jquery
  3. Learn CSS Basics Very Simple Tutorial
  4. Simple PHP mail Script
  5. Add to favorites or bookmarking using javascript in firefox and internet explore [IE]
  6. Transparent Box using CSS
  7. Image preloader using CSS

Leave a Reply

Comments (required)

Spam Protected