Code Example
<html>
<body>
<?php
$day=date("D");
if ($day==”Sat")
{
echo "Have a nice weekend!";
}
elseif ($day=="Sun")
{
echo "Have a nice Sunday!";
}
else
{
echo "Have a nice day!";
}
?>
</body>
</html>
No comments:
Post a Comment