1
I use codeigniter in my application.
The localhost works perfectly. I use a folder Assets outside the Application, where it contains all my files.
the code I pull is this:
<link href="<?php echo base_url(); ?>assets/css/bootstrap/bootstrap.css?>"
rel="stylesheet" type="text/css">
or
<script src="<?php echo base_url(); ?>assets/js/bootstrap.js?>"></script>
When I go up in my hosting, the guides work(links and etc) but the styles don’t come.. There’s something wrong with my code?
You are closing the php tag 2 times.
– user28595
fixed the php tags.. <link href="<? php echo base_url("./Assets/css/bootstrap/bootstrap.css"); ? >" rel="stylesheet" type="text/css"> but still doesn’t pull the Assets, I’m trying in every way ! :(
– Rafael Rotiroti