Is there anyway to get an .htm file to recognize embedded PHP code?
For example, my web site, like most, is structured so that the first page that displays is always index.htm. That's just the way it is.
That being the case, I'd like to do something very simple, like displaying today's date on my index page. But, of course, using the familiar :
<?
$today = getdate();
// now display the date, etc.
?>
does not work because an .htm file knows nothing about PHP and it just ignores the embedded code.
Is there any way to "patch" around this limitation?