shrike, question.
would the db class file have to be included (include_once ='file.php'; type of thing) into the base class?
another question, would it even be a good idea to extend db onto base
class base extends db {
...
}
the reason i ask is because i've created a typical db class and i'm not exactly sure what's the best method of using it with other classes. is it best to extends the class with db or just include the class file and use $this-var = new db();
maybe there is another solution.
thanks.