The button will be displayed, which means that when you click on the button on the screen, it should be redirected to another page (view):
use binding to this in the view:
<?php echo anchor('controller_name/function_name', 'acnchor_name'); ?> <?php echo anchor('Edit/edit', 'edit'); ?>
where edit should be the name of the function and view.
Now a click-to-click link will be displayed, it will be redirected to edit the view.
I hope you will be helped!
source share