Running PHP Scripts in Includes

Questions and answers about ShopSite Custom Templates
Post Reply
bwokich
Posts: 5
Joined: Tue Oct 18, 2011 10:33 am

Running PHP Scripts in Includes

Post by bwokich »

I'm trying to call a PHP script from inside an include. I have my include named FILENAME.php and am then including it with [-- INCLUDE FILENAME.php PROCESS --]

The include's a simple hello world at the moment.

Code: Select all

<?php echo 'hello world';?>
The PHP is appearing in the source of the markup without being interpreted.

Any advice on what I'm doing wrong?

Bryan
loren_d_c
Posts: 2572
Joined: Fri Aug 04, 2006 12:02 pm
Location: Anywhere
Contact:

Re: Running PHP Scripts in Includes

Post by loren_d_c »

ShopSite does not process PHP code, that is up to your webserver. Is the page that the PHP code is showing up on named with a .php file extension? Some servers require this in order for them to process the PHP code. Note that PHP will not work in the shopping cart, search, gift certificate, or customer registration pages, these are .cgi pages and the webserver will not parse the output of .cgi's for PHP code.

-Loren
bkerns
Posts: 16
Joined: Wed Nov 20, 2013 2:07 pm

Re: Running PHP Scripts in Includes

Post by bkerns »

I believe you can enable PHP to run in HTML docs by adding a type or handler to your .htaccess:

AddType application/x-httpd-php .html .htm
or
AddHandler application/x-httpd-php .html .htm

-Brian
Post Reply