Skip to content

Instantly share code, notes, and snippets.

@m3nt0r
Last active December 16, 2015 18:09
Show Gist options
  • Save m3nt0r/5475359 to your computer and use it in GitHub Desktop.
Save m3nt0r/5475359 to your computer and use it in GitHub Desktop.
ImageHelper url example
<?php
echo $html->link(
$html->image('cake.power.gif', array(
'alt'=> __("CakePHP...", true),
'border'=>"0"
)),
'http://www.cakephp.org/',
array('target' => '_blank'), null, false
);
<?php
echo $html->image('cake.power.gif', array(
'url' => 'http://www.cakephp.org',
'alt' => __('CakePHP...', true),
'border' => 0
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment