OK Folks....
I can't get
<? include("header.htm") ?>
to work. If I use a relative link like
<? include("../includes/header.htm") ?>
it will work.
I have tried editing php.ini to correct the path to the includes directory (which is currently an http accessable area) to no avail.
I have also tried the following:
<?php
$page="header.htm";
include($page);
?>
Can someone give me some suggestions? I am stumped. I'm using php version 4.3.1.
This is my first time trying to use includes on my Win2000 machine. PHP is working properly for some forums, scripts, etc. I am using.
Thanks!