I have used the Facebook PHP SDK to fetch the pages user likes.
$liked = $facebook->api('/me/likes');
After decoding the JSON I get the output array something like this:
Array (
[data] => Array (
[0] => Array ( [category] => Book [name] => Steve Jobs by Walter Isaacson [id] => 152707268157952 [created_time] => 2012-12-05T15:10:14+0000 )
[1] => Array ( [category] => Internet/software [name] => Evernote [id] => 30670583128 [created_time] => 2012-11-24T04:39:25+0000 )
[2] => Array ( [category] => Product/service [name] => HTC [id] => 112176482203770 [created_time] => 2012-11-15T06:36:59+0000 )
....
....
....
)
I want to store the category and name of every page the user has liked into the database table. I want to store it in such a way that I can efficiently compare two users, and get mutually liked pages. For example: When a user wants to compare the books in common with another user, the user can get the mutually liked books.
How should I store the data from the array into the table in such a way that I can use it later for comparisons.