Can someone help me with this??
First, using today’s date, convert it into a variable.
Example: if today is 18th Sept 2009
It will be 18092009
Next, using this variable, add up all the individual numbers until it become a single digit.
Example: 18092009 will be 1+8+0+9+2+0+0+9 = 29 then 2+9 = 11 then 1+1 = 2
Next, using that single digit, convert 6 occurrences of that digit into a string and add a '#' in front of it.
Example: #222222
Finally, output a string using the previous converted string as the bgcolor for this body tag. This should be the only string your codes will be outputting.
Example: <body bgcolor="#222222"></body>
Using PHP, program the above solution.
I have tried but I can't >.<
Please help me...