Welcome Guest, Not a member yet? Register   Sign In
User System
#39

[eluser]plasmagames[/eluser]
ok, i have gotten to the comments part where it displays them. So far the script will submit the comments but won't display them.


Heres what the browser gives me
Quote:Fatal error: Call to a member function num_rows() on a non-object in /home/pmgames/public_html/code/system/application/views/newscomment.php on line 16

Here's the Code for the comment view file
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
&lt;html &gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;
&lt;title&gt;&lt;?=$title?&gt;&lt;/title&gt;

&lt;link href="http://plasmasteelgames.net/code/assets/psgv.css" rel="stylesheet" type="text/css"&gt;

&lt;/head&gt;
&lt;body&gt;
<center>
<h1>&lt;?=$heading?&gt;</h1>
</center>
<hr />

    &lt;?php if ($query->num_rows() > 0): ?&gt;
    &lt;?php foreach($query as $row): ?&gt;
    <h5>&lt;?= $row->author; ?&gt;</h5>
    <hr />
    <p>&lt;?= auto_typography( $row->body); ?&gt;</p>
    <br />
    <hr />
    &lt;?php endforeach; ?&gt;
    &lt;?php endif; ?&gt;


<hr />
<p>&lt;?=anchor('news/comments/'.$row->id, 'Comment');?&gt;</p>

&lt;?=form_open('news/comment_insert');?&gt;

&lt;?=form_hidden('entry_id', $this->uri->segment(3));?&gt;

<p><b>Comment</b></p>
<p>&lt;textarea name="body" rows"10" cols="50" rows="10"&gt;&lt;/textarea></p>
<p>Author:</p><p>&lt;input type="text" /&gt;&lt;/p>
<p>&lt;input type="submit" value="Add Comment" /&gt;&lt;/p>

&lt;/form&gt;

&lt;/body&gt;
&lt;/html&gt;


and heres the controller
Code:
&lt;?php

class News extends Controller {

    function News()
    {
        parent::Controller();
            */the Database Connection Info\*

            $this->load->database($config);
            
            $this->load->scaffolding('news');
            
            $this->load->helper('typography');
            $this->load->helper('form');
            $this->load->helper('url');
    }

    function index()
    {
        $data['title'] = "Plasma Steel Games | Bring Out Your Inner Gamer!";
        $data['heading'] = "Plasma Steel Games";
        $data['slogan'] = "Bring Out Your Inner Gamer!";
        $data['query'] = $this->db->query('SELECT * FROM news')->result();
                
        $this->load->view('index.php', $data);
    }
    
    function comments()
    {
        $data['title'] = "Plasma Steel Games | News Comments";
        $data['heading'] = "Comment Title";
        $this->db->where('entry_id', $this->uri->segment(3));
        $data['query'] = $this->db->query('SELECT * FROM comments')->result();
                
        $this->load->view('newscomment.php', $data);
    }
    
    function comment_insert()
    {
        $data['query'] = $this->db->query('SELECT * FROM comments', $_POST)->result();
        redirect('news/comments/'.$_POST['entry_id']);
    }
}

?&gt;


Messages In This Thread
User System - by El Forum - 01-08-2009, 03:14 PM
User System - by El Forum - 01-08-2009, 04:22 PM
User System - by El Forum - 01-08-2009, 09:27 PM
User System - by El Forum - 01-08-2009, 09:35 PM
User System - by El Forum - 01-09-2009, 12:46 PM
User System - by El Forum - 01-09-2009, 05:25 PM
User System - by El Forum - 01-10-2009, 06:36 PM
User System - by El Forum - 01-10-2009, 06:39 PM
User System - by El Forum - 01-11-2009, 12:26 AM
User System - by El Forum - 01-11-2009, 02:09 AM
User System - by El Forum - 01-11-2009, 10:42 AM
User System - by El Forum - 01-11-2009, 08:15 PM
User System - by El Forum - 01-11-2009, 10:03 PM
User System - by El Forum - 01-11-2009, 10:56 PM
User System - by El Forum - 01-12-2009, 02:29 PM
User System - by El Forum - 01-19-2009, 02:51 PM
User System - by El Forum - 01-19-2009, 03:20 PM
User System - by El Forum - 01-21-2009, 03:09 PM
User System - by El Forum - 01-21-2009, 03:14 PM
User System - by El Forum - 01-21-2009, 03:16 PM
User System - by El Forum - 01-21-2009, 03:21 PM
User System - by El Forum - 01-21-2009, 08:38 PM
User System - by El Forum - 01-21-2009, 10:07 PM
User System - by El Forum - 01-21-2009, 10:57 PM
User System - by El Forum - 01-25-2009, 11:47 PM
User System - by El Forum - 01-26-2009, 11:31 AM
User System - by El Forum - 01-26-2009, 11:53 AM
User System - by El Forum - 01-26-2009, 12:47 PM
User System - by El Forum - 01-26-2009, 02:47 PM
User System - by El Forum - 01-26-2009, 03:46 PM
User System - by El Forum - 01-26-2009, 10:40 PM
User System - by El Forum - 01-27-2009, 04:50 PM
User System - by El Forum - 01-27-2009, 05:01 PM
User System - by El Forum - 01-27-2009, 06:18 PM
User System - by El Forum - 01-27-2009, 10:51 PM
User System - by El Forum - 01-27-2009, 10:52 PM
User System - by El Forum - 01-28-2009, 12:42 AM
User System - by El Forum - 01-28-2009, 07:06 AM
User System - by El Forum - 01-28-2009, 08:18 PM
User System - by El Forum - 01-28-2009, 08:37 PM
User System - by El Forum - 01-29-2009, 07:56 AM
User System - by El Forum - 01-29-2009, 10:15 AM
User System - by El Forum - 01-29-2009, 12:42 PM
User System - by El Forum - 01-29-2009, 01:00 PM
User System - by El Forum - 01-30-2009, 10:18 AM
User System - by El Forum - 01-30-2009, 10:45 AM
User System - by El Forum - 02-02-2009, 08:59 PM
User System - by El Forum - 02-03-2009, 08:23 AM
User System - by El Forum - 02-03-2009, 08:44 AM



Theme © iAndrew 2016 - Forum software by © MyBB