Problem:
Executing php code within a HTML document
Warning: Deprecated
This article is inaccurate or out of date and should not be used.
Solution:
Deprecated
Executing php code within a HTML document is easy. Simply add this line to your main .htaccess file:
AddHandler application/x-httpd-php5 .html .php .htm
Then, you can insert code into your .html pages like this:
Code:
<?php
echo "hello world"
?>
Recommended Help Content
This article will explain how to add a PHP handler to your .htaccess files. This is useful if you want to customize the version of PHP that runs your PHP files.
If suddenly when you go to your page, you get nothing on the page. You can still get HTML to display, just not PHP. To serve HTML pages to browsers, we don't associate the Apache processes with your 2
The redirection of www.yourdomain.com/default.html or index.html to http://www.yourdomain.com/index.php?act=whatever redirects it to http://www.yourdomain.com/index.php%3fact=whatever In other words,
Related Help Content
How do I redirect users to another page using PHP?
This article will explain how to create MIME types.
How to Set different character sets with PHP and HTML to display correctly.
Instructions to set different character sets in HTML. Note: Not all character sets will be correctly rendered with this encoding format, but most will. You can find specific information about which ch
How can I adjust the php settings specifically for an Addon Domain?
Knowledgebase Article
330,841 views
tags:
domain php
How to customize your html or php error pages.
Knowledgebase Article
162,841 views
tags:
errors php
This article explains how to enable FastCGI for PHP applications.
Knowledgebase Article
164,651 views
tags:
fastcgi php
How do I change the PHP environment for my site with php.ini?