problems

See all posts Reply

problems new!
by Liam ONeill, 13 years, 9 months ago
Anyone know why this class doesn't play nicely with my auto load functionReply
Re: problems new!
by Liam ONeill, 13 years, 9 months ago
function __autoload($class) {  
  $pathtoclass = '/classes/'.$class.'.class.php';
  require_once($pathtoclass);
}
Reply
Re: problems new!
by colin, 13 years, 9 months ago
Search the site for autoload, it may help.Reply