darkcavalry

Results 4 comments of darkcavalry

You have used _columns_bbb_ in `$db->orHaving("columns_bbb", "%$query_key%", 'LIKE');` query. When you remove this column name in your array it will give error.

Hello, ->getLastError(); function just returns query errors. You can check #783 for DB connection control example.

Im using this query for table creation maybe it's help for you. ``` $db_pref = ''; // * users Table if(!$db->tableExists($db_pref."users")){ $db->rawQuery(" CREATE TABLE `".$db_pref."users` ( `user_id` int(11) NOT NULL...

use update.countdown method; $('.d24').each(function(){ > var timee = $(this).val(); > $(this).countdown(timee).on('update.countdown', function(event) { > $(this).val(event.strftime('%w weeks %d days %H:%M:%S')); > }); });