Hi, I have a html file, in which i want php to display the date, do i have to call the php function from a php file or can i call the function from my html file. e.g.
File1.htm
<?php ?>
or
File2.htm
<?php
$ret = include 'thefilewiththedatefucntion.php';
?>
<? print "$Date";?>
any ideas?
Thanks
Chris Davis