Hi guys! I have a table in mysql database. I get user's info with:
Code:
SELECT * FROM `table` WHERE steamid='%s'
And the query returns some rows. I want to combine the values from column in all rows.
Example: (these are the values from the column in all returned rows)
1. a
2. b
3. c
4. d
5. e
6. f
And I want to combine them all in one string:
Code:
new combine[32] = "abvdef"
How canI do this?