A simple but useful class for working with mysql database
It will use mysqli driver, so make sure you installed required extensions
See methods list : methods
mysql::query('select * from `users` where `id` = ? limit 1', [123456789]);mysql::select('users', '*', ['id' => 123456789], 1);mysql::insert('users', 'id', 123456789);mysql::update('users', ['step' => 'panel'], ['id' => 123456789], 1);