Recent Posts

This Post Has Been Viewed 158 Times.

Change background color using php for a webpage

Posted by admin | Posted in Html, PHP, scripts | Posted on 23-05-2009

0

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)
Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • De.lirio.us
  • Xerpi

Related posts:

  1. Learn CSS Basics Very Simple Tutorial
  2. Transparent Box using CSS
  3. Load Another Webpage Content Using Simple Jquery
  4. Simple PHP mail Script
  5. Simple Calendar Script Using Javascript
  6. Add to favorites or bookmarking using javascript in firefox and internet explore [IE]
  7. Adding a draggable div along with the cursor using simple javascript

Write a comment

Spam Protected