![]() |
Problem with base_url() - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: Problem with base_url() (/showthread.php?tid=57737) |
Problem with base_url() - El Forum - 04-07-2013 [eluser]xxIdroxx[/eluser] Hello, i have a problem with the function: base_url() In a view i have this code: Code: <link href="<?php base_url();?>design/css/slider.css" rel="stylesheet" type="text/css" /> game/design... and not design/... How i can fix it? Problem with base_url() - El Forum - 04-07-2013 [eluser]InsiteFX[/eluser] Should be this: Code: <link href="<?php echo base_url('design/css/slider.css');?>" rel="stylesheet" type="text/css" /> |