You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are using div and css to construct your html pages then the profiler will hide behind your divs. But if you are reading this then you know that probably already.
Here is the easiest solution I could come up with.
#Controller:function__construct() {
parent::Controller();
$this->load->library('profiler');
$this->load->view('blank');
}
#anywhere you like in your view file:// view/blank.phpif(isset($this->profiler)){print($this->profiler->run());}