Welcome Guest, Not a member yet? Register   Sign In
Issue with my 'Sign in' script
#8

[eluser]invision[/eluser]
Wow. I really need to do more CodeIgniter. You did a great job cleaning things up Smile

Actually right now for showing comments I just use View:

Code:
if (count($comments)){
    foreach ($comments as $key => $list){
        echo "<p><b>Comment by ".$list['name'].":</b></p>\n";
        echo auto_typography($list['comment_body']);
    }
    echo "<br/>";
}

with the Controller
Code:
function post($id){
    $data['post'] = $this->MPosts->getPost($id);
    $data['comments'] = $this->MComments->getComments($id);
    $data['title'] = "Review of ".$data['post']['title'];
    $data['main'] = 'public_post';
    $this->load->vars($data);
    $this->load->view('template');  
  
  }

How would you suggest I try the viewcomment function?


Messages In This Thread
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 12:29 PM
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 01:26 PM
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 01:58 PM
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 02:07 PM
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 02:13 PM
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 02:32 PM
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 02:44 PM
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 02:53 PM
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 02:56 PM
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 03:02 PM
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 03:04 PM
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 03:15 PM
Issue with my 'Sign in' script - by El Forum - 10-05-2010, 03:17 PM
Issue with my 'Sign in' script - by El Forum - 10-06-2010, 07:25 AM



Theme © iAndrew 2016 - Forum software by © MyBB