Ben formu tasarımı uygulaması için CakePHP'ye kullanıyorum.
Benim kod
<?php echo $html->link('Delete', array('action' => 'deleteForm', 'id' => $r['Form']['id']), null, 'Are you sure?' )?>
Benim denetleyicisi
function deleteForm($id = null) {
$this->Form->del($id);
$this->Session->setFlash('Your entry has been deleted.');
$this->redirect(array('action'=>'homepage'));
}
Benim deleteForm.ctp dosyasında sadece bir geri link tuttu.
Form silinir ve Flaş mesajı geldi edilir. Ama bir hata gösteren
forms/deleteForm/1 is not found in this SERVER.
Solution: The error is because I have saved the view file as deleteForm.ctp instead of delete_form.ctp. Now it works.