Thanks. You just saved me some time. I was looking into the more complicated array_walk
No worries. Remember to mark this thread as resolved (if it is) using the thread tools.
Incidentally, the array_walk() solution is:
array_walk($array,
create_function('&$value,$key,$prepend', '$value=$prepend.$value;'),
'h_');