I posted the other day about the same problem, and here I am again and maybe this time I'll get a response.
I have created two sets of arrays ($fields,$values);
$fields are the field names of my table. The Values are the values under each field.
I am trying to create a string out of field and assign it the value.
$$field = array($a=>$values[$i]);
$$field creates a string name, and because there are multiple values for the string, I am trying to create an array that can be called later as such.
$category[3] or $cat_id[3]. Which are the two fields in this instance.
As I mentioned before I can set these strings in a single value session. It's creating the arrays that it's having trouble with.
The array is only holding the final value of each field.
Maybe one of you clever guys or gals can point me in the right direction.
Ron