View Single Post
Old 01-22-2009, 06:19 PM   PM User | #7
rizzo89
New Coder

 
Join Date: Nov 2008
Posts: 10
Thanks: 1
Thanked 0 Times in 0 Posts
rizzo89 is an unknown quantity at this point
I have found myself trying to execute PHP tags within an XSL file again. I was told in another forum that this will do it.

In HTACCESS:

AddHandler application/x-httpd-php5 .xsl

It does not work for me.

I would like to place a "php includes statement" for my menus.

Code:
<ul>
<li><a href="/index.php?page=index">Home</a></li>
<li><a href="/index.php?page=pricing">Pricing</a></li>
<li><a href="/index.php?page=memos">Memos</a></li>
<li><a href="/index.php?page=forms">Forms</a></li>
<li><a href="/index.php?page=sales">Sales Support</a></li>	
</ul>
Code:
<?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/menu.php'); ?>

What am I missing here?
rizzo89 is offline   Reply With Quote