Hi,
I have a string, like this:
Userid1 Pass1
Userid2 Pass2
Userid3 Pass3
Userid4 Pass4
Each column is tab separated. I want to explode it into an array so that the userid will be the key, and the password the value. I tried to do it like this:
$array = explode("\t", $string); // Where $string is the string above.
However, this returned both the userid and the password as the value, and created an automatic key for each row in the array. Can anyone help me?
Thanks,