Posts by Krash0 • 23 points
2 posts
-
0
votes1
answer53
viewsQ: Add a SET list value to Mysql
I want to add values in a list (values separated by "," which will then be used the "split" function) in mysql, I am using this code: UPDATE clans SET Admins = concat(Admins, ',', 'NomeDoJogador')…
-
2
votes3
answers924
viewsQ: Format String
I have the following example code: String _randomTag = "pvp"; String _randomTag2 = "otherName"; String _format = "{tag} {player} {" + _randomTag + "} {" + _randomTag + "} > {msg}" String _result…