Hi,
I want to append an element into an associative array at the end.
for example
my array is
$test=Array ( [chemical] => asdasd [chemical_hazards] => ggggg )
and my result should be
$test=Array ( [chemical] => asdasd [chemical_hazards] => ggggg [solution] => good)
Could you guys tell me how to implement this.
thanks