Well in that case instead of using
@array=split/,/,$_ just use the
($var1,$var2...) syntax, no real difference (Though personally I'd rather assign to the array and call the values by
$array[5] instead of
$var5 :-).
Not using
CSV is your perogative, though if any of your fields have any chance of having an embedded comma in them, it gets tricky to split the values.