<?
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('sym');
//print_r($images);

$dir  = 'Pics';
$hdl  = opendir($dir);
while( false !== ($img = readdir($hdl)) ){
   if( $img != '.' && $img != '..' ){
      $images[] = $img;
   }
}
closedir($hdl);

foreach($images as $loc){
?>
		<track>
			<title></title>
			<creator></creator>
			<location>Pics/<?=$loc?></location>
			<info></info>
		</track>
<?
}
?>

   </trackList>
</playlist>

