Schede Tecniche
// header("Content-Type: text/html; charset=UTF-8"); ?>
function elencafiles($dirname,$arrayext){
$dirname = $dirname . "/";
$arrayfiles=Array();
if(file_exists($dirname)){
$handle = opendir($dirname);
while (false !== ($file = readdir($handle))) {
if(is_file($dirname.$file)){
$ext = strtolower(substr($file, strrpos($file, "."), strlen($file)-strrpos($file, ".")));
if(in_array($ext,$arrayext)){
array_push($arrayfiles,$file);
}
}
}
$handle = closedir($handle);
}
sort($arrayfiles);
return $arrayfiles;
}
$array_extimg=array('.pdf','.jpg');
$arrayfile=array();
//$titolo_sezione = $_SESSION['titolo_sezione_allegati'];
$cartella_sezione = $_SESSION['sezione_allegati_file'];
$arrayfile=elencafiles($cartella_sezione,$array_extimg);
for($i=0;$i
}
?>