How to tag friends in photos as we do in status. Below code worked for multiple user add. Now I want to tag them to photos that I am uploading, how can this be done? I want the exact functionality like Facebook status works, where user can tag friends in status that they write
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript" src="http://localhost/magento/jquery/js/jquery.tokeninput.js"></script>
<link rel="stylesheet" href="http://localhost/magento/jquery/css/token-input.css" type="text/css" />
<link rel="stylesheet" href="http://localhost/magento/jquery/css/token-input-facebook.css" type="text/css" />
</head>
<?php
$friend_list = file_get_contents('https://graph.facebook.com/me/friends?access_token=Your Fb token');
$friend_data = substr($friend_list,9);
$friend_detail = substr($friend_data,0,-247);
//print_r($friend_detail);
?>
<body>
<div>
<input type="text" id="demo-input-facebook-theme" name="blah2" />
<script type="text/javascript">
$(document).ready(function() {
$("#demo-input-facebook-theme").tokenInput([<?php echo $friend_detail;?>], {
theme: "facebook"
});
});
</script>
</div>
</body>
</html>