Welcome Guest, Not a member yet? Register   Sign In
Easy Question - Comments_View and Showing Article
#1

[eluser]Kesey[/eluser]
I'm a beginner w/ PHP and CI. I've followed the blog tutorial and I'm trying to get the entry that one is commenting on to show up at the top of the comments page.

I can get all of the entries to show up, similar to how it works on the main blog page, but how can I get just the one entry instead of using the loop to pull them all?

Controller:
Code:
function comments()
    {
        $data['query'] = $this->db->get('entries');
        $this->load->view('commentsview', $data);
    }

View:
Code:
<!--Get Article-->
    <?php foreach($query->result() as $row): ?>
        <h3>&lt;?=$row->title?&gt;</h3>
        <p>&lt;?=$row->body?&gt;</p>
        <p>&lt;?=anchor('blog', 'Back to Blog');?&gt;</p>
        <hr>        
    &lt;?php endforeach; ?&gt;
&lt;!-- End Get Article--&gt;

Thanks!


Messages In This Thread
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 03:38 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 03:58 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 04:01 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 04:32 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 04:48 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 04:49 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 04:52 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 04:56 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 04:59 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 05:00 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 05:07 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 05:09 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 05:13 PM
Easy Question - Comments_View and Showing Article - by El Forum - 04-20-2008, 05:46 PM



Theme © iAndrew 2016 - Forum software by © MyBB