I installed apache2, php5 and the php5 apache module on Ubuntu 13.04.
Php is working on .php files but lines of php code inside html files do not execute.
Go
Got it to work. my version of apache doesn't have httpd.conf, instead has php5.conf
in /etc/apache2/mods-enabled/
editing that file, found this:
SetHandler application/x-httpd-php
SetHandler applicatio
....
....
added the lines:
SetHandler application/x-httpd-php
now php parses the html files and code works.