On Wed, 2002-11-27 at 18:57, Robert W. Kramer III wrote:
>
> If I name my file .php and run the printinfo() routine, I get output. But
> when the file is named .html or .htm, the printinfo() just displays in the
> page.
>
> Is there a way to get .html files to execute the PHP code within them? For
> example, the following code will only work from within a file with .php as
> the extension:
>
> (index.php)
> <?php
> print ("Hello World!<P>");
> phpinfo();
> ?>
>
> This will display as expected showing the PHP environment in pretty tables.
>
> When I rename index.php to index.htm, I get output that looks like this:
>
> "); phpinfo(); ?>
>
> Can't PHP code be inserted in .html named files?
I believe it can by adding to your web-servers conf file .
in apache 1.2.37 it would be
AddType application/x-httpd-php .html
Check your web-servers docs to be sure.
John Coder
--
PHP Install Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php