guratr
guratr
Surround foreach ($table_columns as $col) { ``` if ($i == 0) { $whereClause = " WHERE"; } if ($i > 0) { $whereClause = $whereClause . " OR"; } $whereClause...
$recordsTotal = $app['db']->executeQuery("SELECT \* FROM `__TABLENAME__`" . $whereClause . $orderClause)->rowCount() needs to change like this $recordsTotal = $app['db']->executeQuery("SELECT count(*) as cn FROM `__TABLENAME__`" . $whereClause . $orderClause)->fetch()['cn'];
I noticed on my project that scrolls on comment page are very laggy, and found the DropDown component to be the problem. I tried striping everything else that may be...