Viewing 1 to 2 of 2 items
Tag Archives: profiler

CodeIgniter Profiler Extended

CodeIgniter includes a built in Profiler class that really helps debugging your php applications in real-time. I highly recommend using it if you aren’t already. It’s really simple to enable, just add this one line to your php code and refresh your application. $this->output->enable_profiler(TRUE); The profiler data will be displayed in the footer of your  Full Article…

5

CodeIgniter with Multiple Database Support

** UPDATED on 2010-09-06 ** Over the last few months I have been using the CodeIgniter framework for several projects. So far, I have been very pleased with its flexibility and even more so with its extensibility. On one my projects, I needed to connect to multiple databases at the same time. CI easily supports  Full Article…