I have a problem.
I would like to include a file "test.php" in every page except pages that are in a folder "/board/". Can php do this?
So far i have
But is there something i can do like...
Obviously i don't actually know much PHP, so any help would be appreciated...
I would like to include a file "test.php" in every page except pages that are in a folder "/board/". Can php do this?
So far i have
include 'test.php';
But is there something i can do like...
if curdir = /board/ {
include 'nothing';
}
else {
include 'test.php';
}
Obviously i don't actually know much PHP, so any help would be appreciated...
