Categorized | PHP

Is there any way to include php includes inside an html page?

Posted on 04 May 2010 by Abidoon

I can’t use php pages cause it’s messing with my script… the script calls up some stuff with the htaccess file.

Tags | , , , , ,

2 Responses to “Is there any way to include php includes inside an html page?”

  1. crsimon36 says:

    Are you using “shtml” as the extension? Also, does you host permit server side includes. Probably yes.

  2. Atif Majid says:

    Your file extension must be PHP. It does not matter if you have html in it. And where you want to include other php file, just use include function

    < ?php
    include "test.php";
    ?>
    ———————-


Leave a Reply