Iam using cakephp ajax link for calling a page
<div id="post">
</div>
<?php echo $ajax->link(
'View Post',
array( 'controller' => 'posts', 'action' => 'view', 1),
array( 'update' => 'post', 'position' => 'top' )
);
?>
I want to display a image instead of the View Post . I have used $html->imge But it is not working
Thanks in advance
1 Answer