Welcome Guest, Not a member yet? Register   Sign In
Userguide CI 3.0 error
#3

(02-19-2015, 01:48 PM)Narf Wrote: Sorry, but I can't find the piece that you're referring to. Can you quote it here?

Hi, below the code. Look the piece of code of href that creates the View Article link. That "news" word must be replaced to "view".

The code above gets all news records from the model and assigns it to a variable. The value for the title is also assigned to the $data[‘title’] element and all data is passed to the views. You now need to create a view to render the news items. Create application/views/news/index.php and add the next piece of code.

Code:
<h2><?php echo $title ?></h2>

<?php foreach ($news as $news_item): ?>

       <h3><?php echo $news_item['title'] ?></h3>
       <div class="main">
               <?php echo $news_item['text'] ?>
       </div>
       <p><a href="news/<?php echo $news_item['slug'] ?>">View article</a></p>

<?php endforeach ?>
Reply


Messages In This Thread
Userguide CI 3.0 error - by reszko - 02-19-2015, 09:13 AM
RE: Userguide CI 3.0 error - by Narf - 02-19-2015, 01:48 PM
RE: Userguide CI 3.0 error - by reszko - 02-19-2015, 03:15 PM
RE: Userguide CI 3.0 error - by InsiteFX - 02-20-2015, 05:36 AM
RE: Userguide CI 3.0 error - by reszko - 02-20-2015, 06:04 AM
RE: Userguide CI 3.0 error - by Narf - 02-20-2015, 06:12 AM
RE: Userguide CI 3.0 error - by reszko - 02-20-2015, 06:19 AM
RE: Userguide CI 3.0 error - by Narf - 02-20-2015, 08:00 AM
RE: Userguide CI 3.0 error - by reszko - 02-20-2015, 08:57 AM
RE: Userguide CI 3.0 error - by Narf - 02-20-2015, 10:00 AM
RE: Userguide CI 3.0 error - by Muzikant - 02-21-2015, 07:16 AM
RE: Userguide CI 3.0 error - by Narf - 02-21-2015, 10:37 AM
RE: Userguide CI 3.0 error - by Muzikant - 02-21-2015, 12:21 PM
RE: Userguide CI 3.0 error - by Muzikant - 02-21-2015, 07:21 AM
RE: Userguide CI 3.0 error - by Narf - 02-21-2015, 10:44 AM
RE: Userguide CI 3.0 error - by Narf - 02-21-2015, 02:24 PM
RE: Userguide CI 3.0 error - by doubler - 08-22-2015, 12:08 PM
RE: Userguide CI 3.0 error - by mwhitney - 08-24-2015, 09:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB