[eluser]ealonw[/eluser]
Brandon and Stuffradio!!! Thank you so much man.. Here is what I did for my controller... Adding the query line at the end and changing the order of my curly bracet to close with two at the bottom made the difference.. My view works now..
class Contact extends Controller {
function contact()
{
parent::Controller();
$this->load->library('database');
$this->load->helper(array('form', 'url'));
$this->load->scaffolding( 'usercomment');
}
function index()
{
// Produces: SELECT * FROM mytable
$query = $this->db->get('usercomment');
$this->load->view('contact_view',array('query'=>$query));
}
}
This case is now closed...