if I have an array like this $a1 = array('first'=>'one','second'=>'two, 'third'=>'three');
I want to produce from $a1 this array
$a2 = array('The key is first and the value is one', 'the key is second and the value is two', 'the key is third and the value is three');
is this possible using...