i'm wondering if there is some way to say "if include("functions.inc") exists, do nothing, but if it doesn't exist, load it"
(kind of like the #INDEF block in C++)
the php function include_once() might be what you want.
http://www.php.net/manual/en/function.include-once.php
yep. thanks bunches.