I'm creating a social network. I'm trying to implement a profile search or a search engine where a profile can discover and connect to new profiles. Is there any algorithms or modules out there in PHP? Do anyone have any suggestion of how to make the search as relevant as possible please give som code example.

Any algorithms that can sort out a profile by name(both first- and last name) in a network where there are thousands of similiar names. Facebook have done this by mutual friends algorithms, but I think they have patented it, so I can't use it.

I try to implement an algorithm where profiles can discover some new profiles by giving them the most relevant search result that is at least as good as Facebook's profile search. Any tips?

UPDATE: I made the question more specific

Many thanks! woho87

link|improve this question

74% accept rate
2  
What is a "profile search" exactly? – Pekka Nov 24 '10 at 14:37
1  
And what criteria should used to determine which profiles to return? You'll have to define this problem more clearly or the question will be closed. – FrustratedWithFormsDesigner Nov 24 '10 at 14:39
Profiles discovering and connecting to profiles on their own sounds spooky. – JP19 Nov 24 '10 at 14:44
@JP19: Actually this sounds a bit like how an online dating websites sometimes work (or fail to work), trying to find the best matches between profiles, based on lists of various preferences. – FrustratedWithFormsDesigner Nov 24 '10 at 14:46
The mutual friends algorithm is patented? Seriously? – FrustratedWithFormsDesigner Nov 24 '10 at 14:57
show 3 more comments
feedback

2 Answers

select name from profile where username LIKE '$username';
link|improve this answer
3  
$username = "'; drop table profile; --"; – DampeS8N Nov 24 '10 at 14:42
1  
nice, i figure he would know to sanitize his data prior to querying. – luckytaxi Nov 24 '10 at 14:49
I know, but I couldn't resist. :) – DampeS8N Nov 24 '10 at 14:52
i think i forgot % in there somewhere. – luckytaxi Nov 24 '10 at 14:53
feedback

Sounds like you want some sort of recommendation engine (like fb/orkut and many sites have).

Simplest recommendation algo - recommend friends of friends. More - recommend people in same communities to each other. More advanced - if you monitor what your users visit/like on your site most, then match those with common interest.

In short - some intuition mixed with creativity.

There may be recommendation engines in PHP, but perhaps not exactly for profiles. You may be able to tweak some I guess.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.