Daarius -
I tried that, but I got the error that I can't have nested classes in the code. You don't have that problem? I just put the call to include_once() as the first line in the class function, and pass in the name of the other class file ("Bar.php", let's say) as the argument.
class Foo
{
function useOtherClass()
{
include_once("Bar.php");
}
}
Then, since it's just putting the other class right in there, I get the nested classes error.
-Jeremy