I try to post on user wall but i don't know how to put a specific link from my page in the link parameter.
If i write something like this it doesn't works:
$link='/path/foto.php?id='.$id;
$facebook->api('/me/feed', 'POST',
array('link' => $link,
'message' => 'Lorem ipsum')
);
and if i write something like this the link goes to a page outside facebook
$link='http://www.site.com/path/foto.php?id='.$id;