This is my code so far:

 Code:
Break on

$filename = "test1.csv"

If Open(1,$filename) = 0

 $line = ReadLine(1)

 While @ERROR = 0

  $array = Split($line,",")

  ?

  For Each $field In $array
   ? $field
  Next

  $line = ReadLine(1)

 Loop

 $= Close(1)

EndIf

Exit 1 



It just reads my csv and shows it on the screen. But I don't know
how to use this values to create users.