Welcome Guest, Not a member yet? Register   Sign In
Got problems on link the page or classes
#1

[eluser]ebot[/eluser]
i am building a blog using CI, and i tried linking the home page to other but everytime i click on an anchor there is also a message that the page i am looking for is not found on the server, and also for my graphics, i can't display the iamge on the view,
always got a message of appliaction model, i don't understand, please need help.
Thanks
#2

[eluser]xwero[/eluser]
can you show the code?
#3

[eluser]ebot[/eluser]
to get back to the home page <?php echo anchor('home','Home');?> and same for the other linking the contact , blog and photo gallery.
#4

[eluser]Nikhil Vijayan[/eluser]
When using ci always load url helper . so specify it in auto loader ( inside application/config/autoload.php )

inside the head tags of views add this

Code:
<head>

<base href="<?= base_url() ?>"  />

</head>

make sure u have entered correct base url in config.php

now try . it will work :coolsmile:

and also use the following ways when you link to another pages

Code:
<?= anchor('home','home') ?>

or
Code:
<a href="&lt;?= site_url('home') ?&gt;">home</a>

whichever makes sense to you




Theme © iAndrew 2016 - Forum software by © MyBB