I'd like to assign the string ["class='op_details' >"]
to the [0] element in the $raw['co_name'][0] array.
However php is assiging the very first character no matter what it is ... to the [0] element.
Does anyone know how to get the string into the [0] element?
thank you...
$raw['co_name'][0]= array("[0]" => " class='op_details' >"); print $raw['co_name'][0]."TICK";exit;
results in A [as in Array] TICK (ATICK)