Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/07/2013, 20:29
janndo
 
Fecha de Ingreso: febrero-2011
Mensajes: 40
Antigüedad: 13 años, 2 meses
Puntos: 0
Respuesta: CakePHP - Date

Esque ese es un tema porque el codigo que tengo solo es asi

Cita:
function add(){
$this->set('title_for_layout','Noticias :: ADD - Control Panel');
$this->set('open','noticias');
$this->set('current','noticias');
if ($this->request->is('post')) {
if ($this->Noticia->save($this->request->data)) {
$this->Session->setFlash('Your post has been saved.');
$this->redirect(array('action' => 'index'));
}
}
}