Hi, I know that the code to get a confirm message while clicking on a link is as given below.
<?php
echo $html->link('Delete',
array('controller'=>'forms','action'=>'delete', $r['Form']['id']),
array(),
'really delete the Form ?',
false
);
?>
I need an alert box saying "Your form has been deleted" after deleting the form by clicking on the 'ok' button in the confirm message.
Is there a method to get an alert box instead of the confirm box or an alert box after the confirm box?