Welcome Guest, Not a member yet? Register   Sign In
extend basic news tutorial
#1

in https://codeigniter.com/user_guide/tutor...ction.html 

One of the views has this code : 
Code:
<p><a href="/news/<?= esc($news_item['slug'], 'url'); ?>">View article</a></p>

Now this works if you followed the tutorial to the letter; but if you had any other way... let's say the lazy WAMP way its a bit of a search to find what is going wrong; (the page links to a 404)

I'm assuming this is the correct way of doing things if you are not in the root directory;

Code:
<p><a href="<?php echo base_url('news/' . esc($news_item['slug'], 'url') ); ?>">View article</a></p>

Can I change this line in the documentation ? (or is this also not the correct way)

It would be great not to force people to only use spark, which is to my humble opinion is fun but not what people are going to use any time soon in production.
Reply
#2

It's a tutorial and it is only meant to show how to do it, nothing is sopping you from doing things your own way..

Yes the above will also work.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply




Theme © iAndrew 2016 - Forum software by © MyBB