si... ti mando in pvt user e pass per accedere...


P.S

questo è il codice di getxsl.php

Codice PHP:
<?php

error_reporting
(15);

if (
file_exists("temp/xsl/".$_GET['s'].".xsl")) {

    
header('Content-type: text/xml');
    
    echo 
implode(file("temp/xsl/".$_GET['s'].".xsl"), "");
    
    
unlink("temp/xsl/".$_GET['s'].".xsl");
}


?>