Hello,
I've stumbled across two problems since my host upgraded the server to PHP 5.
My .htm pages don't read the PHP code anymore. In other words, my code is ignored (no errors displayed -- the page just looks wonky).
<?php include('/home/myname/tpl/header.tpl'); ?>
and
<?php echo date("Y") ?>
Are just not read at all.
I did have all this working through my .htaccess file before PHP 5, which had the lines:
AddType application/x-httpd-php .htm
AddHandler application/x-httpd-php .htm
Then changed that to just:
AddHandler application/x-httpd-php .htm
No luck.
Then tried to change it to:
AddType x-mapp-php5 .htm
Then
AddHandler x-mapp-php5 .htm
No luck there either.
Not sure what to do now. Any help is greatly appreciated!