I've got a Sql table and I need to search through the members
column in order to see if any of the values are the same as one gained previously (eg: 76561198119598543) and if it is then I want to get the value stored under name
of the same row...
The link below is an example of what the table looks like and how the members column is set out. http://nbdcommunity.com/staffimages/example.png
I'm not too much of a PhP person and have tried pretty much everything I could find..
$gangsql = 'SELECT members, name, owner FROM 'gangs' WHERE owner LIKE "$playerid%"';
(playerid being the value I'm wanting to compare to)