<?php
/**
 * Author: Remy Sharp (http://remysharp.com)
 *
 * Based on CodeIgniter 1.6.1
 * 
 * Description: Used in the MY_Controller to help debug SQL
 * 
 * 
 * VERSION: 1.0 (2008-03-25)
 * 
 **/
?>

<ul class="sql">
<?php for ($i = 0; $i < count($queries); $i++) : ?>
    <li><?=$queries[$i]?>; -- <?=round($query_times[$i], 5)?>ms</li>
<?php endfor ?>
</ul>