Hi!
I have a small problem...
I get tactics for soccergames from a database. It can be "352","442","343" and so on...
What I want to do is split the numbers up and put them into an array:
e.g. "352" should be split up into:
$tactic[0] = 3
$tactic[1] = 5
$tactic[2] = 2
How can I do this? Is it possible with explode()?
Also, is it possible to put in spaces for thousands with a simple method?
e.g. "12010000" should be "12 010 000"
Thanks
Vasse