I know we can publish something on a friend's wall with this:
$publishStream = $facebook->api("/$user/feed", 'post', array(
'message' => "Your Message",
'link' => 'http://example.com',
'picture' => '',
'name' => 'App Name',
'description'=> 'App description'
));
Just by replacing the $user variable with the user id of your friend.
What i wish is simply to choose among my friends, the user profiles i want to write on using check boxes.
this is something already possible if you want to share a fan page for instance. You choose the persons you send the request to.
Thanks in advance for your help