Re: help on view with image map

2006-10-16 Thread Gayathiri
Thank you so much.. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] Fo

Re: help on view with image map

2006-10-16 Thread Eric C Blount
You need to feed the attributes as an array, as such: $html->image('map.JPG', array('width' => '504', 'height' => '272', 'usemap' => '#worldmap'));?>HTH, Eric   On 10/15/06, Gayathiri <[EMAIL PROTECTED]> wrote: I need to create a view with an image map using cakephp. when i use the view works..but

help on view with image map

2006-10-16 Thread Gayathiri
I need to create a view with an image map using cakephp. when i use the view works..but when i use $html->img..it doesnt work why? The following is the code...can anyone please help.. image('map.JPG',$width="504",$height="272",$usemap="#worldmap");?> --~--~-~--~~--