I am new to Xsl .i want to load a xsl file from a http location .i am using this following code and the result is false (Can't load).
$xsl = new DomDocument;
$path=('http://www.clearcube.com/support/view/home.xsl');
$load_result=$xsl->load($path);
if(!$load_result){
echo "Can't load " ;
}else{
echo'loaded';
}
i have no idea why this file is not loading .Please help and suggestion Thanks in advance