views:

81

answers:

1

on googling i found this code facebook.fbml.refreshImgSrc('imgURL')

how to use this code with cakephp..

A: 

Stolen from core helper in cookbook

<?php echo $html->image('http://example.com/cake_logo.png', array('alt' => 'CakePHP'))?>

will output

<img src="http://example.com/cake_logo.png" alt="CakePHP" />

You can get more details about this in the cook.I think it should be helpful.

SpawnCxy
FBML accepts only absolute path..!!
udhaya
@udhaya,this is just an example,and absolute path can be used in it too.see update...
SpawnCxy