View Single Post
Old 03-19-2008, 03:44 PM   #6 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

By the way, I got the OP confused, -_-.

Update: Well, my new opinion -_- Is that you should do
If the class is in the php file
PHP Code:
<?php

$usercheck 
member::login('chuck','secret');

?>
otherwise you could always do the magic method:
PHP Code:
function __autoload($php)
{
  include 
'classes/'.$php.'.php';

This grabs every single class in classes/ directory, and includes them.

Something is wrong with me today -_-
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote