Hello,
I just installed code igniter and grocery crud. I wrote the example page, i.e.
<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Mytest extends CI_Controller {
function __construct()
{
parent::__construct();
/* Standard Libraries */
$this->load->database();
$this->load->helper('url');
/* ------------------ */
$this->load->library('grocery_CRUD');
}
function _example_output($output = null)
{
$this->load->view('example.php',$output);
}
function offices()
{
$output = $this->grocery_crud->render();
$this->_example_output($output);
}
}
It returns me an error:
A Database Error OccurredError Number: 1103
Incorrect table name ''
SHOW COLUMNS FROM ``
Filename: D:\wamp\www\codeigniter\system\database\DB_driver.php
Line Number: 330
