A basic question

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

I am new to php scripting and would like to ask you a basic question. 

Could you kindly explain to me why "time.php" works but "time.html" does
not?

pine



time.php
------------------------------------------------------
<?php

$serverdate = date("l, d F Y h:i a");
print ("$serverdate");
print (" &nbsp; <p>");

?>
---------------------------------------------------------


time.html
---------------------------------------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd";>
<html>

<head>
  <title>Local Time</title>
  <meta name="GENERATOR" content="Text Editor">
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<p>This is a test.</p>
<?php
$serverdate = date("l, d F Y h:i a");
print ("$serverdate");
print (" &nbsp; <br>");
?>
<p></p><p>This is the end.</p>
</body>
</html>
-------------------------------------------------------------------

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux