You got the idea, this is exactly what I want to do. First of all thanks for the reply.
Couple of questions about this.
I have some check box fields with 20 checkboxes. Does this mean I have to number all the string and arrays like you did here? What if all were not checked off by the user? Will this throw off the count and mess everything up?
$string = "string_1,string_2,string_3,string4";
$myArr = explode(",", $string);
//presuming you know the order of the array
$argument1 = $myArr[0];
$argument2 = $myArr[1];
$argument3 = $myArr[2];
$argument4 = $myArr[3];
Also instead of numbering the string couldn't I do something like this:
$eyecolor = $a_row["eyecolor"];
$arr_words = explode(',',$eyecolor);
I then get them numbered as they went into the database like here. Is this totally wrong?
Array ( [0] => Brown [1] => Blue [2] => Violet [3] => Grey [4] => Black [5] => Green [6] => Hazel )
Hope I'm making sense. Thanks for the help.