How to read directory structure and save it into XML document with PHP ? Can i sorting dan searching in XML using PHP ?
You're being fairly vague explaining, which makes it a bit difficult to help. Here an example though. <?php $files = glob('./path/to/files/*'); header('Content-type: text/xml'); echo '<?xml version="1.0" encoding="iso-8859-1"?>'. "\r\n"; ?> <directory> <?php foreach ($files AS $file) { ?> <item> <type><?php echo (is_dir($file) ? 'Directory' : 'File'); ?></type> <dir><?php echo dirname($file); ?></dir> <name><?php echo basename($file); ?></name> </item> <?php } ?> </directory> Code (markup):