I'm not sure about the non-PHP bit but you'd need something like:
PHP Code:
<?php
// Not sure if you need this bit if you are including into member.php anyway
$cwd = getcwd();
chdir('./path/to/forums');
require_once('global.php'); // you don't need to define directory here just include
chdir($cwd);
?>
<config....
....
...
...
<play_list><?php echo $userinfo['field15']; ?>,Title</play_list>
...
</config>
</span>