> Hi there i was wondering is it more efficient to load class files and
> objects when needed per page or is it ok to include them in my main include
> file ?

require_once()
or
include_once()

The files containing the class files before you need them.  They will
only be loaded when needed that way.

-Dan

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to