Okay, I need to construct a search function that can search a database of user names for relavent users. It needs to allow & for AND's and " " for OR's. The problem is, I have no idea how I would do that!
Example:
Users - Dark Phoenix, Test, Joker
User inputs "Dark".
Should list in the following order:
Dark Phoenix
Joker
Test
Users - Dark Phoenix, Test, Joe Pho
User inputs "Pho".
Should list in the following order:
Dark Phoenix
Joe Pho
Test