I just got started with CodeIgniter and am wondering will it slow things down if I put code like this in a loop.
$data[\'title\'] = \'the title\'; $d
Think about moving loop from controller to the view file (at controller you must prepare all data before load view file). You will have only one call for loading view file, and in the view file you can print out info in the loop cycle as you want.