Hola, tengo este codigo en el __contruct de una clase que extiende de StandardForm:
$this->datos_tienda = $this->Tiendas->find_by_ip($this->ip);
existe el model tiendas.php ...
Este es el error:
Fatal error: Call to a member function find_by_ip() on a non-object
Por qué no funciona?
Saludos.
Comentarios
Saludos
CREATE TABLE `tiendas` (
`id` int(11) NOT NULL auto_increment,
`nombre` varchar(50) NOT NULL,
`ip` varchar(15) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
el campo ip existe...
lo arregle asi:
$Tiendas = new Tiendas();
$this->registro = $Tiendas->find_by_ip($this->ip);
Saludos