Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/07/2011, 07:45
maxr96
 
Fecha de Ingreso: julio-2011
Mensajes: 2
Antigüedad: 12 años, 9 meses
Puntos: 0
Respuesta: function delete en CAKEPHP 1.3

Saludos yo tambien estoy empezando con esto y revisando la documentación de The CakePhp 1.3 book en Tutorials and Examples vi este ejemplo

11.1.11 Deleting Posts

Next, let's make a way for users to delete posts. Start with a delete() action in the PostsController:

function delete($id) {
if ($this->Post->delete($id)) {
$this->Session->setFlash('The post with id: ' . $id . ' has been deleted.');
$this->redirect(array('action' => 'index'));
}
}

donde se cambia solamente "del" de CakePhp 1.2 por "delete". y funciona perfectamente.