How can I create Class in PHP, which will work like DB Class in codeIgniter ?
I can use this class in such a way:
$this->db->select('...');
$this->db->where('...');
$this->db->get('...');
and like that:
$this->db->select('...')->where('...')->get('...')-> .......
Thanks.