I would like show the "select friends" dialog before publish to a friend wall, like that:

I am not sure if it is possible with the PHP SDK, I didn't find anything about it on the Fb documentation.
Could I also use a kind of Facebook URL, such as :
$link=https://www.facebook.com/dialog/feed?app_id=<your appid>&redirect_uri=<your redirecting link>&link=<link u are posting>&message=<message>.&picture=<picture URL you want to show>&caption=<title>&description=<description>&name=<title>
(this on is use to post to our own wall)
UPDATE:
After I have selected the selected friends uids, I want add them to the Graph API link and then publish to their wall.
if (isset($_GET['request_ids'])) {
$i = 0;
$n = count(request_ids);
while($n!=$i){
$link = ($link + "&to=" + $request_ids[$i]);
$i = $i +1;
}
echo "<script language=javascript>parent.location=''</script>";
}
Is something wrong with my php code?
Any help would be appreciated. Thank you.