Hey all,
In the oop portion of PHP i am passing inheritance via the extends
ie. class LostEmail extends DBManager { code.. }
but keep getting
Cannot extend non existant class DBManager
any ideas?
thanks
jim
You gotta give us more than that, where are the classes located at, are they on the same page? If not are you including the one you are trying to extend with an include("");?
Hi
what you need is
inlcude("blah.php"); at the top of the page
blah.php is the code taht contains the estend class