php - Access sub folder of module in HMVC Codeigniter -
i have sub folder uploads in module. using hmvc extension codeigniter. structure of application following:
modules
--mymodule
----/controllers
----/models
----/views
----/uploads
-------/images
how can access images folder using url?
place uploads
folder outside of application
folder(root directory).
so can access
<img src="<?php echo base_url(); ?>uploads/images/logo.png" alt="">
i don't think works. tip
if folder inside application folder can use apppath
<img src="<?php echo apppath ?>uploads/images/logo.png" alt="">
Comments
Post a Comment