iam getting the system day $day1 = date("d");
and i want to print the $day1 onto the browser in red color with <h1> font can some one help please
(ie) 21 (shud be in red color and in h1 font)
advance thanks
bob
Hi,
it's not really a PHP problem 🙂
print "<H1><FONT COLOR=\"#FF0000\">$day1</FONT></H1>\n";
in HTML 3.2 style
Hervé.
echo "<h1><font color=\"red\">$day1</font></h1>";