CodeIgniter Forums
codeigniter image path. - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: codeigniter image path. (/showthread.php?tid=43596)



codeigniter image path. - El Forum - 07-17-2011

[eluser]FlyingCat[/eluser]
I am a codeignite newbie and tried to add an image in my file under view folder.

I add
Code:
<img src="../images/myImage.jpg"></img>
to my service_view.php. All I can see is a broken link of a small icon.

however, if I change my path to

Code:
<img src="../../user_guide/images/myImage.jpg"></img>
I can see the image.

My file system is as follow:

Code:
application-
   view ->folder    (where service_view.php is located)
   images -> folder   (where myImage.jpg is located)

user_guide-
   images ->folder  ((where myImage.jpg is located))


Can anyone help me about this? Thanks a lot!


codeigniter image path. - El Forum - 07-17-2011

[eluser]Eric Barnes[/eluser]
You should really use the base_url or img helper to create absolute paths - http://ellislab.com/codeigniter/user-guide/helpers/html_helper.html#img
Code:
<img src="&lt;?php echo base_url(); ?&gt;images/myImage.jpg" />
or
&lt;?php echo img('images/myImage.jpg'); ?&gt;

By the way the image html tag doesn't have a closing tag.


codeigniter image path. - El Forum - 07-17-2011

[eluser]FlyingCat[/eluser]
Thanks a lot Eric!! Your link does help me a lot!