Okay, I've got my site using Includes on basically every page so it looks like:
<?php include("http://www.mydomain.com/begin.html"); ?>
<?php echo("This is my page content."); ?>
<?php include("http://www.mydomain.com/end.html"); ?>
I also have a page included in "begin.html" called "common_links.php" which is used to store variables and functions for some of my longer URLs. I include it in my pages the same way as the above except I use a relative path, because it bugs out on me if I don't. Every page in my root directory works just fine, so thats good.
However, when I go to a page that is in another folder like "/town/city/index.php" all the PHP functions I used in my "begin.html" produce an error because they are undefined it says. Is there anyway to fix this problem?