here is a simple PHP script that will display today's date on your browser
first step is to open your text editor. you can use notepad if you are using windows.
then copy and paste this code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Displaying Today's Date</title>
</head>
<body>
<h3 align="center">Displaying Today's Date Script by Wallpaperama </h3>
<hr>
<p>Today's Date is : <?php print(date("1 f d, Y")); ?>
</p>
<p>&nbsp;</p>
<p align="center">PHP Web Hosting Provided by <a href="http://www.webune.com">Webune.com</a> </p>
</body>
</html>