<?
header('content-type:text/xml;charset=utf-8');
include '../settings/functions.php';
echo '<?xml version="1.0" encoding="UTF-8"?>'."\n";
?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
	<trackList>
<?
$images = get_images('3');
//print_r($images);
foreach($images as $loc){
?>
		<track>
			<title></title>
			<creator></creator>
			<location>images/gallery/3/<?=$loc?></location>
			<info></info>
		</track>
<?
}
?>

   </trackList>
</playlist>

