in reply to XMLSimple XMLout, formatting output
XMLout() will render simple scalar values as attributes unless the NoAttr option is in effect. So one approach would be: if you don't want a value to be an attribute, don't represent it as a simple scalar, e.g.: change your source data to:
$VAR1 = { 'Last' => [ 'Smith' ], 'First' => [ 'John' ], };
|
|---|