Hi,
I have an instillation of PHP 4.1.12 running on Mac OS X as an Apache 1.3.23 module that is not rendering php embedded in html pages.
PHP is rendering pages ending in the ‘.php’ extension just fine
Could anyone tell me what combination of configuration options in the php.ini file, the httpd.conf file, the .htaccess file, or in any other file that could turn on php rendering within html pages?
Here is the simple script I’m running:
<head>
</head>
<body>
<p>This is the part that is showing up as html text.
<?php echo "And this is the part that PHP is rendering"; ?>
</body>
No php error messages, even with error reporting turned on. Just no rendering.
I would appreciate any advice.
Thanks.