- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
class cDBEngineWrapper
	{
	private $dbprefix;
	
	public function __construct($prefix)
		{
		$this->dbprefix = $prefix;
		}
		
	public function __call($func, $args)
		{
		return call_user_func_array("{$dbprefix}_{$func}", $args);
		}
	}
 Follow us!
 Follow us!