[eluser]ealonw[/eluser]
Wow... I still got a 404... This is so simple yet so confusing... What could be missing?
**********CONTROLLER*********
<?php
class Contact extends Controller {
function Contact()
{
parent::Controller();
$this->load->library('database');
$this->load->helper(array('form', 'url'));
$this->load->scaffolding('usercomment');
}
}
function index()
{
$this->load->helper(array('form', 'url'));
// Produces: SELECT * FROM mytable
$query = $this->db->get('usercomment');
$this->load->view('contact_view', $query);
}
*********VIEW********
<html>
<head>Comment View</head>
<body>
<?php foreach ($query->result() as $row): ?>
<?=$row->fname?>
<?=$row->lname?>
<?=$row->email?>
<?=$row->comment?>
<?php endforeach;?>
</body>
</html>