如何在codeigniter中执行此操作?

Does anyone know how to make resize.php to work in codeigniter?

Below is my code used before CI and it worked perfectly fine before I decided to upgrade, now I'm facing this issue.

<img class="media-object" src="funcs/resize.php?src=customers/400.jpg&w=60" alt="...">

I have tried the code below, but with no luck!

<img class="media-object" src="<?php echo base_url();?>funcs/resize.php?src=<?php echo base_url('customers/400.jpg'); ?>&w=60" alt="...">

I also gave this a try:

<img class="media-object" src="<?php echo base_url();?>funcs/resize.php?src=<?php echo base_url();?>customers/400.jpg&w=60" alt="...">

I am new to CI and I don't know what else to try.