Dilukshan Mahendra
Dilukshan Mahendra

Reputation: 3398

Displaying an image in Codeigniter

Folder Structure is as follows

My Project

Please instruct me to get rid of this issue.

Upvotes: 0

Views: 1762

Answers (1)

Vidar Vestnes
Vidar Vestnes

Reputation: 42964

The problem as I see it, is that you are using a relative url as your image src.

Try using and absolute url for your image.

<img src="<?php echo base_url('Public/img/logo.png'); ?>" />

Upvotes: 3

Related Questions