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>
Related posts:
- Learn CSS Basics Very Simple Tutorial
- Transparent Box using CSS
- Load Another Webpage Content Using Simple Jquery
- Simple PHP mail Script
- Simple Calendar Script Using Javascript
- Add to favorites or bookmarking using javascript in firefox and internet explore [IE]
- Adding a draggable div along with the cursor using simple javascript







