Base for a static organization website

sql_explain.ctp 269B

1234567891011
  1. <table class="sql-log-query-explain debug-table">
  2. <?php
  3. $headers = array_shift($result);
  4. echo $this->Html->tableHeaders($headers);
  5. echo $this->Html->tableCells($result);
  6. ?>
  7. </table>
  8. <?php
  9. // Consume and toss out the timers
  10. $timers = DebugKitDebugger::getTimers(true);