

axilant said:in .htaccess:
Add that code,Code:AddType application/x-httpd-php-source .htm .html
Then you can use php in your html documents.
idevisedesign said:I guess you could say i wanted something like this:
<?HTML include("http://domain.com/file.htm"); ?>
obiously thats not correct, but you get the point.
Anyone know? I'd prefer not to use the .htaccess method
you cannot do that. HTML is a layout language, not a parsing code.idevisedesign said:I guess you could say i wanted something like this:
<?HTML include("http://domain.com/file.htm"); ?>
obiously thats not correct, but you get the point.
Anyone know? I'd prefer not to use the .htaccess method
idevisedesign said:I guess you could say i wanted something like this:
<?HTML include("http://domain.com/file.htm"); ?>
obiously thats not correct, but you get the point.
Anyone know? I'd prefer not to use the .htaccess method
<? echo file_get_contents ('http://domain.com/file.htm'); ?>
Secure HTML.
Secure HyperText Markup Language.
Much like HTML but stricter in terms of tags that are allowed to be used.



