02.04.2013, 19:13
I'm no expert with mySQL, but I'm fairly certain a string with delimiters is returned like so:
SELECT Cash, Score FROM players WHERE blah blah
1337|69|blah|blah|blah
Why not use sscanf on that with '|' as the delimiter?
SELECT Cash, Score FROM players WHERE blah blah
1337|69|blah|blah|blah
Why not use sscanf on that with '|' as the delimiter?