please review my code, i have tried several suggestion on various threads, i either get a blank out put or a string.
my code
<?php
$input_array = array (
'name' => 'John Doe',
'course' => 'Computer Science',
'age' => 'twenty one'
);
$xml = new SimpleXMLElement('<root/>');
array_walk_recursive(array_flip($input_array), array ($xml, 'addChild'));
print $xml->asXML();
?>
output John DoeComputer Sciencetwenty one
fororforeachloop instead of trying to make a one-liner witharray_walk_recursive.