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:
- Change webpage background color using javascript
- Load Another Webpage Content Using Simple Jquery
- Learn CSS Basics Very Simple Tutorial
- Simple PHP mail Script
- Add to favorites or bookmarking using javascript in firefox and internet explore [IE]
- Transparent Box using CSS
- Image preloader using CSS
