I know this is a Spanish site/forum, but I'll give it a try anyway.
Have one question about the great FileReference tutorial you've got.
http://www.cristalab.com/tutoriales/121/subiendo_archivos_con_filereference_de_flash_8
Is it possible to to make the list part in ASP?
Código :
<?php
$No=array(".","..","lista.php","uploadFile.php");
$fp=opendir(".");
echo "<?xml version='1.0' ?".">";
echo "<files>";
while (false!==($file=readdir($fp))){
if ((!in_array($file,$No))&&(is_readable($file))){
echo "<file name='".utf8_encode($file)." tamanio='".filesize($file)."' />";
} }
closedir($fp);
echo "</files>"; ?>
?>
Thankful for any advice.
/S-fish
