Ver Mensaje Individual
  #5 (permalink)  
Antiguo 30/05/2011, 17:34
RatoN7
 
Fecha de Ingreso: marzo-2010
Mensajes: 71
Antigüedad: 14 años, 7 meses
Puntos: 24
Respuesta: Error en CodeIgniter 2.0.2

Holas.

Para el constructor pone asi:
Código PHP:
Ver original
  1. <?php
  2.  
  3. class Helloworld_model extends CI_Model
  4. {
  5.  
  6.     public function __construct()
  7.     {
  8.         // Call the Model constructor
  9.         parent::__construct();
  10.     }
  11.  
  12.     public function getData()
  13.     {
  14.         //Query the data table for every record and row
  15.         $query = $this->db->get('data');
  16.  
  17.         if ($query->num_rows() > 0) {
  18.             return $query->result();
  19.         } else {
  20.             //show_error('Database is empty!');
  21.         }
  22.     }
  23.  
  24. }

Saludos