I have been working in an facebook application that imports the list of the user's friends pictures and displays their pictures in a grid manner along with a checkbox with each image to select the images to do tasks like adding them to a group or sending the same posts to the selected friends. Its like a typical html form and till the displaying part, it is working fine. The code that i have used basically:
<form action="check.php" method="post">
$friends = $facebook->api('/me/friends?fields=id,name,birthday', 'Get');
foreach($friends['data'] as $friends)
{
<img src="https://graph.facebook.com/<?php echo $friends['id']; ?>/picture? type=square" title=" <?php echo $friends['id']; ?>">
<input type="checkbox" name="checkv[]" align = " top " value= "<?php echo $friends['name'];?>" />
}
<div align = "center" ><input type="submit" name="formSubmit" value="Select for Group" /> </div>
<div> <input type="button" value="Go Back !" onclick="history.back(-1)" /> </div>
</form>
It is pretty straight forward and working as well. But I want to ask if its possible to just drag and drop the images into groups in the same page, after they are imported using the aforementioned facebook api call. Just align the images into groups in some way so that from the same page i can select a group to send posts to, using the graph api. The grouping is the main problem as posting is working.
I am having troubles solving the problem as the groups information will have to be stored for every single user that will be using the app. I will be using xml for that. But right now drag and drop images into groups to send post to is the main problem i am dealing with for quite sometime now. Thanks.