Browsing archives for 'CakePHP'

Baking Mambo

CakePHP,Open Source 22 July 2007 View Comments

Yesterday, The Mambo Foundation announced that they will use CakePHP for the next version of Mambo and at the same day I presented about CakePHP at PHP Meetup 3.0. You can download my slide here and the announcement is here.

HTMLHelper : Link With Image

CakePHP 11 July 2007 View Comments

In Cakephp 1.1, if you want to display an image with a link, you’ll need to do something like this: echo $html->link( $html->image(‘myimage.jpg’), ‘/controller/action’, array(), null, false ) You need to tell CakePHP not to escape the content with last false statement. In CakePHP 1.2 you could do : echo $html->link( $html->image(‘myimage.jpg’), ‘/controller/action’, array(‘escape’ => [...]