Include files not working on PHP documents in Frontpage 2003

  • Thread starter Thread starter Brad Waddell
  • Start date Start date
B

Brad Waddell

Hi

I have common top and bottom pages for each page in my web site. I refer to
them like this:
<!--webbot bot="Include" U-Include="top.htm" TAG="BODY" -->

I recently added a PHP helpdesk system, and the include files do not workin
the .php extension files. i have tried changing them to be handled by the
frontpage editor as HTM format, but no change.

How do I get PHP files to work with Frontpage Include files? Or am I
required to use PHP coding to emulate the same thing in this case? thanks!



brad
 
Have you installed MS Office /FrontPage SP1
- fixed the includes for other than htm

PS please don't cross post
--




| Hi
|
| I have common top and bottom pages for each page in my web site. I refer to
| them like this:
| <!--webbot bot="Include" U-Include="top.htm" TAG="BODY" -->
|
| I recently added a PHP helpdesk system, and the include files do not workin
| the .php extension files. i have tried changing them to be handled by the
| frontpage editor as HTM format, but no change.
|
| How do I get PHP files to work with Frontpage Include files? Or am I
| required to use PHP coding to emulate the same thing in this case? thanks!
|
|
|
| brad
|
| --
| brad
| www.qodbc.com - The ODBC Driver for Quickbooks
|
|
 
Brad said:
How do I get PHP files to work with Frontpage Include files? Or am I
required to use PHP coding to emulate the same thing in this case?
thanks!

I don't know how Frontpage works (and as most people in the Open Source
community won't know, you might get more tips on that in the FP group you
crossposted to). Anyway including files with PHP is very simple:

<?php include("includefile.txt"); ?>

HTH
Markus
 
Back
Top